EditPPT commited on
Commit
0c58abf
·
0 Parent(s):

Add DECKEDIT-BENCH v1 (data-only release)

Browse files
.gitattributes ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ # DECKEDIT-BENCH decks retain full-resolution media (~1 GB total).
2
+ # Track .pptx with Git LFS so the repo stays clonable.
3
+ *.pptx filter=lfs diff=lfs merge=lfs -text
4
+
5
+ # Keep text assets as normal git-tracked files.
6
+ *.md text
7
+ *.json text
8
+ *.jsonl text
9
+ *.cff text
CITATION.cff ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cff-version: 1.2.0
2
+ title: "DECKEDIT-BENCH: A Benchmark for Instruction-Guided PowerPoint Editing"
3
+ message: "If you use this dataset, please cite it as below."
4
+ type: dataset
5
+ version: "1.0.0"
6
+ date-released: "2026-06-02"
7
+ authors:
8
+ - name: "Anonymous Author(s)"
9
+ license: CC-BY-NC-4.0
10
+ # Author names, affiliation, repository URL, and DOI are withheld for
11
+ # double-blind review. They will be restored in the camera-ready release.
12
+ abstract: >-
13
+ DECKEDIT-BENCH pairs 28 real-world PowerPoint decks (Short / Medium / Long)
14
+ with 183 natural-language editing instructions organized along a
15
+ Cell x Action x Target taxonomy. It evaluates instruction-guided .pptx
16
+ editing systems on target localization, multi-step decomposition, pattern
17
+ compression across slides, and preservation of non-target content.
18
+ keywords:
19
+ - benchmark
20
+ - powerpoint
21
+ - pptx
22
+ - instruction-following
23
+ - document-editing
24
+ - agents
DATASHEET.md ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # DECKEDIT-BENCH — Datasheet
2
+
3
+ Following the *Datasheets for Datasets* structure (Gebru et al., 2021).
4
+
5
+ ## Motivation
6
+
7
+ Instruction-guided document editing is largely evaluated on plain text or
8
+ single-shape image edits. Real presentation editing is harder: instructions are
9
+ under-specified, targets must be located among many shapes, edits repeat across
10
+ slides, and a good system must change only what was asked while preserving
11
+ everything else. DECKEDIT-BENCH provides real decks and natural-language
12
+ instructions to measure these abilities, with an explicit axis for **preservation**
13
+ (non-target damage) alongside instruction-following accuracy.
14
+
15
+ ## Composition
16
+
17
+ - **Instances.** 183 `(deck, instruction)` pairs over 28 `.pptx` decks.
18
+ - **Deck tiers** (by slide count): Short ≤10 (9 decks), Medium 11–30 (12),
19
+ Long >30 (7). Largest deck: 50 slides.
20
+ - **Instructions per tier:** Short 54 · Medium 81 · Long 48.
21
+ - **Cells:** ES 17 · EC 57 · PS 87 · PC 22 (see TAXONOMY.md).
22
+ - **Languages:** source decks are en (21) / ko (7); some instructions ask for
23
+ translation into en/ko/ja/fr/es/zh.
24
+ - **Domains** (28 decks): AI/ML/Speech-NLP research (12), STEM lecture &
25
+ engineering (4), Humanities & general (4), Business reports (3),
26
+ Architecture/Urban/Visual (3), Medical/Bio (2).
27
+ - **Visuals:** decks variously contain pictures, tables, and charts; per-deck
28
+ inventory is in `deck_info.json` (`visuals`).
29
+ - **Two fully-synthetic decks** (`02_RemoteWorkSurvey`, `09_ApexAnalytics`) are
30
+ chart-heavy fixtures authored for this benchmark.
31
+
32
+ Each instance carries: `deck_id`, `id`, `cell`, `ops_per_slide`, `actions`,
33
+ `derived_from` (template id or `deck-specific`), `intent`, `text`.
34
+
35
+ ### Known imbalances / limitations
36
+
37
+ - REPLACE accounts for ~75 % of actions; ADD/DELETE/SLIDE are sparser.
38
+ - `SLIDE` actions appear only in PS cells; ES/EC/PC × SLIDE = 0.
39
+ - `slide-mgmt` (add/delete/duplicate slide) is barely tested.
40
+ - Multi-action instructions (≥2 distinct actions) are rare.
41
+ - Domain skew toward AI/Speech research (~43 % of decks); legal/finance/sales/
42
+ medical-chart are under-represented — an external-validity caveat.
43
+ - Not every instruction is deterministically checkable: ~75 % are
44
+ (text/color/font/chart-attr/background); translate/summarize/"important parts"
45
+ require an LLM/vision judge.
46
+
47
+ ## Collection process
48
+
49
+ Decks are real lecture, seminar, paper-review, proposal, and report
50
+ presentations contributed by their authors (with permission), plus two
51
+ synthetic chart decks. Instructions were authored for this benchmark to cover
52
+ the Cell × Action × Target space; 92 derive from 14 reusable templates
53
+ (`taxonomy.json`), 91 are deck-specific. No model outputs are included in the
54
+ released data.
55
+
56
+ ## Preprocessing / cleaning / anonymization
57
+
58
+ All decks were sanitized for personal and third-party data. PII in `.pptx`
59
+ hides in **non-visible metadata layers**; every layer below was scrubbed and the
60
+ result re-verified (0 residual names / emails / template watermarks across all
61
+ 28 decks):
62
+
63
+ 1. **Document properties** — `docProps/core.xml`, `app.xml`: `creator`,
64
+ `lastModifiedBy`, `title`, `subject`, `keywords`, `Company`, `Manager` cleared.
65
+ 2. **Comment / coauthor records** — `ppt/authors.xml`, `ppt/commentAuthors.xml`:
66
+ real author names anonymized to `Author A/B/…` (5 decks), initials blanked.
67
+ 3. **Coauthoring revision history** — `ppt/changesInfos/changesInfo*.xml`:
68
+ `chgData name=` author names anonymized (4 decks).
69
+ 4. **Embedded emails** — real addresses replaced with `example.*` placeholders.
70
+
71
+ `11_FourthIndustryStartup` was originally built on a commercial third-party
72
+ template; it was **rebuilt copyright-clean**: original text and styling preserved
73
+ verbatim, the template's full-slide background and all raster images removed,
74
+ template-vendor watermarks stripped, and slide imagery replaced with
75
+ license-clean Unsplash photos (then downsized to 1920 px). Its instruction
76
+ targets (team identifier, author list, four category labels, a replaceable
77
+ image, the startup-pitch body) are preserved, so its prompts behave as before.
78
+
79
+ ## Uses
80
+
81
+ Intended for evaluating instruction-guided `.pptx` editing systems
82
+ (instruction-following accuracy, target localization, pattern compression,
83
+ and content preservation). Not intended as training data for, or evaluation of, deck
84
+ *generation* from scratch. The decks reflect their source domains and languages
85
+ and should not be treated as a representative sample of all presentations.
86
+
87
+ ## Distribution
88
+
89
+ Released as static files (decks + `prompts.jsonl` + `taxonomy.json` +
90
+ `deck_info.json` + docs). Decks retain original-resolution media (~1 GB total)
91
+ and require Git LFS or a large-file dataset host. License: **CC BY-NC 4.0**
92
+ (`LICENSE`); third-party image/figure attributions in `THIRD_PARTY_NOTICES.md`.
93
+ This v1 release is **data only** — the evaluation/judge harness is not included.
94
+
95
+ ## Maintenance
96
+
97
+ When adding decks or instructions: update `deck_info.json`; add the
98
+ instructions to the per-deck source and regenerate `prompts.jsonl` /
99
+ `taxonomy.json`; re-run the PII scrub and coverage audit. The benchmark is
100
+ intended to grow toward the gaps listed under *Known imbalances*.
LICENSE ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ DECKEDIT-BENCH — Data License
2
+ =============================
3
+
4
+ Copyright (c) 2026 Anonymous Author(s).
5
+
6
+ The DECKEDIT-BENCH dataset — its curation, natural-language instructions,
7
+ taxonomy, metadata, and documentation — is licensed under the
8
+
9
+ Creative Commons Attribution-NonCommercial 4.0 International
10
+ (CC BY-NC 4.0)
11
+
12
+ You are free to share and adapt the material for non-commercial purposes,
13
+ provided you give appropriate credit. Full legal code:
14
+
15
+ https://creativecommons.org/licenses/by-nc/4.0/legalcode
16
+ Summary: https://creativecommons.org/licenses/by-nc/4.0/
17
+
18
+ NOTE ON THIRD-PARTY CONTENT
19
+ ---------------------------
20
+ The decks redistribute third-party material (e.g. figures reproduced from
21
+ published papers and educational materials inside paper-review/lecture decks).
22
+ That material remains under its respective rights and is included for
23
+ non-commercial research use only; the CC BY-NC 4.0 grant above covers the
24
+ benchmark's own contribution, not the embedded third-party content. Image and
25
+ figure provenance is documented in THIRD_PARTY_NOTICES.md.
26
+
27
+ The canonical CC BY-NC 4.0 legal code (linked above) governs in full; you may
28
+ append its verbatim text to this file if a self-contained copy is preferred.
README.md ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: DECKEDIT-BENCH
3
+ license: cc-by-nc-4.0
4
+ language:
5
+ - en
6
+ - ko
7
+ tags:
8
+ - powerpoint
9
+ - pptx
10
+ - instruction-following
11
+ - document-editing
12
+ - agents
13
+ - benchmark
14
+ size_categories:
15
+ - n<1K
16
+ task_categories:
17
+ - other
18
+ configs:
19
+ - config_name: prompts
20
+ data_files: prompts.jsonl
21
+ ---
22
+
23
+ # DECKEDIT-BENCH
24
+
25
+ A benchmark for **instruction-guided PowerPoint (`.pptx`) editing**. It pairs
26
+ 28 real-world presentation decks with **183 natural-language editing
27
+ instructions**, organized along a **Cell × Action × Target** taxonomy and three
28
+ deck-length tiers (Short / Medium / Long).
29
+
30
+ Each instance is a `(deck, instruction)` pair: a system reads the instruction,
31
+ edits the deck, and the before/after decks are compared. The benchmark stresses
32
+ locating the right targets, decomposing multi-step instructions, compressing
33
+ repeated edits into a pattern, and **not damaging what should stay untouched**.
34
+
35
+ ## Contents
36
+
37
+ ```
38
+ DECKEDIT-BENCH/
39
+ ├── decks/{Short,Medium,Long}/*.pptx # 28 source decks (≤10 / 11–30 / >30 slides)
40
+ ├── prompts.jsonl # 183 editing instructions (one JSON / line)
41
+ ├── taxonomy.json # cell + action definitions, 14 reusable templates
42
+ ├── deck_info.json # per-deck metadata (size, language, topic, visuals)
43
+ ├── DATASHEET.md # datasheet-for-datasets (composition, collection, cleaning)
44
+ ├── TAXONOMY.md # Cell × Action × Target taxonomy + template catalog
45
+ ├── THIRD_PARTY_NOTICES.md # image/figure provenance & attributions
46
+ ├── LICENSE # data license (CC BY-NC 4.0)
47
+ └── CITATION.cff
48
+ ```
49
+
50
+ ## Prompt format (`prompts.jsonl`)
51
+
52
+ One JSON object per line:
53
+
54
+ ```json
55
+ {"deck_id":"02_UTI","id":"02_UTI-01","cell":"PS","ops_per_slide":1,
56
+ "actions":["REPLACE"],"derived_from":"U-01",
57
+ "intent":"…what this instance tests…","text":"…instruction sent to the system…"}
58
+ ```
59
+
60
+ - `text` — the instruction handed to the editing system.
61
+ - `cell` ∈ `{ES, EC, PS, PC}` · `actions` ⊆ `{ADD, DELETE, REPLACE, SLIDE}`.
62
+ - `derived_from` — a universal template id (`U-xx`, see `taxonomy.json`) or `"deck-specific"`.
63
+
64
+ See **TAXONOMY.md** for definitions.
65
+
66
+ ## Quickstart
67
+
68
+ ```python
69
+ import json
70
+ prompts = [json.loads(l) for l in open("prompts.jsonl", encoding="utf-8")]
71
+ info = {d["id"]: d for d in json.load(open("deck_info.json", encoding="utf-8"))["decks"]}
72
+
73
+ p = prompts[0]
74
+ deck_path = info[p["deck_id"]]["path"] # e.g. "decks/Short/01_CausalAGI.pptx"
75
+ # 1. open deck_path, 2. apply p["text"] with your system, 3. diff before/after.
76
+ ```
77
+
78
+ ## Coverage
79
+
80
+ | | total | breakdown |
81
+ |---|---|---|
82
+ | Decks | **28** | Short 9 · Medium 12 · Long 7 |
83
+ | Prompts | **183** | Short 54 · Medium 81 · Long 48 |
84
+ | Cells | — | ES 17 · EC 57 · PS 87 · PC 22 |
85
+ | Deck languages | — | en 21 · ko 7 (translate targets also span ja/fr/es/zh) |
86
+
87
+ Full Cell × Action matrix and known imbalances are in **DATASHEET.md**.
88
+
89
+ ## Notes on the decks
90
+
91
+ - **Full resolution.** The `.pptx` files keep original-resolution media (~1 GB
92
+ total) and are distributed via Git LFS / the dataset host.
93
+ - **Privacy.** Every deck was scrubbed of author/coauthoring/comment PII; see
94
+ **DATASHEET.md → Preprocessing/cleaning**.
95
+ - **Provenance.** Embedded figures in paper-review decks, and the replacement
96
+ images in `11_FourthIndustryStartup`, are credited in **THIRD_PARTY_NOTICES.md**.
97
+
98
+ ## License & citation
99
+
100
+ Data is released under **CC BY-NC 4.0** (see `LICENSE`). If you use
101
+ DECKEDIT-BENCH, please cite it — see `CITATION.cff`.
TAXONOMY.md ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # DECKEDIT-BENCH — Taxonomy
2
+
3
+ Every instruction is classified along three axes. The first two (**Cell**,
4
+ **Action**) are stored on each instance in `prompts.jsonl`; **Target** is a
5
+ heuristic multi-label used for analysis.
6
+
7
+ ## 1. Cell — planner scope
8
+
9
+ | Cell | Meaning |
10
+ |------|---------|
11
+ | **ES** | Explicit-Simple — 1 slide × 1 target shape |
12
+ | **EC** | Explicit-Compound — 1 slide × multiple target shapes (or multiple ops) |
13
+ | **PS** | Pattern-Simple — ≥2 slides × 1 target shape per slide |
14
+ | **PC** | Pattern-Compound — ≥2 slides × multiple target shapes per slide (or multiple ops per slide) |
15
+
16
+ The Explicit↔Pattern split tests whether a system can compress a repeated edit
17
+ into one templated operation rather than emitting N per-slide operations; the
18
+ Simple↔Compound split tests in-slide decomposition.
19
+
20
+ ## 2. Action — operation type
21
+
22
+ | Action | Meaning |
23
+ |--------|---------|
24
+ | **ADD** | In-slide content insertion (new shape, prepend/append text, new paragraph, new table row) |
25
+ | **DELETE** | In-slide content removal (delete shape, drop text, remove paragraph/row) |
26
+ | **REPLACE** | In-slide content substitution (rewrite text, change color/font/size, swap value) |
27
+ | **SLIDE** | Slide-wise operation (add/delete/duplicate a slide, set transition, set background) |
28
+
29
+ Stored as a deduplicated set per instruction, e.g. `["REPLACE", "ADD"]`.
30
+
31
+ ## 3. Target — heuristic multi-tag
32
+
33
+ `text-style`, `text-content`, `image`, `table`, `chart`, `slide-transition`,
34
+ `slide-background`, `slide-mgmt`, `layout`, `shape-add`, `shape-delete`,
35
+ `page-number`, `privacy`, `other`. (Analysis aid; not stored per instance.)
36
+
37
+ ## Cell × Action coverage (183 instructions)
38
+
39
+ Counts are per (cell, action); multi-action instructions contribute to each of
40
+ their actions, so rows may exceed the cell total.
41
+
42
+ | | ADD | DELETE | REPLACE | SLIDE | cell total |
43
+ |--------|----:|-------:|--------:|------:|-----------:|
44
+ | **ES** | 5 | 5 | 7 | 0 | **17** |
45
+ | **EC** | 5 | 2 | 51 | 0 | **57** |
46
+ | **PS** | 9 | 10 | 57 | 11 | **87** |
47
+ | **PC** | 3 | 1 | 22 | 0 | **22** |
48
+
49
+ REPLACE dominates (~75 %), as most edits are content/style substitutions;
50
+ `SLIDE` appears only in PS. See DATASHEET.md for the full imbalance list.
51
+
52
+ ## Universal template catalog (`taxonomy.json → templates`)
53
+
54
+ 92 of the 183 instructions are instantiated from these 14 reusable templates
55
+ (referenced via `derived_from`); the remaining 91 are `deck-specific`.
56
+
57
+ | id | name | cell | actions | template text |
58
+ |----|------|------|---------|---------------|
59
+ | U-01 | translate-to-English | PS | REPLACE | Translate all text in slide into English. |
60
+ | U-02 | ES-title-color-slide1 | ES | REPLACE | Change the title color of slide 1 to blue. |
61
+ | U-03 | EC-multi-format-last-slide | EC | REPLACE/ADD | On the last slide, change title color, body font, and prepend 'Summary: '. |
62
+ | U-04 | PS-titles-color | PS | REPLACE | Change the title color of every slide to blue. |
63
+ | U-06 | PC-translate-and-summarize | PC | REPLACE/ADD | Translate each title, add a summary line and a takeaway line. |
64
+ | U-07 | PC-chapter-template | PC | ADD | Prepend `[{i}]` / `Section {i}:` and append `— Slide {i}` across slides. |
65
+ | U-08 | PC-translate-and-font | PC | REPLACE | Translate titles, change body font, change title color (every slide). |
66
+ | U-09 | ES-delete-shape-slide1 | ES | DELETE | On slide 1, delete the largest non-title shape. |
67
+ | U-10 | PS-delete-recurring | PS | DELETE | On every slide, delete any empty text shape. |
68
+ | U-13 | PS-slide-transition | PS | SLIDE | Apply a fade transition to every slide. |
69
+ | U-16 | PS-slide-background | PS | SLIDE | Set the background of every slide to light gray. |
70
+ | U-20 | PS-mirror-each-from-template | PS | REPLACE | Use slide 1 as a layout template; match shape positions on every slide. |
71
+ | U-21 | PS-add-page-number | PS | ADD | Add a `{i}` slide-number textbox at bottom-right of every slide. |
72
+ | U-22 | PS-body-font-change | PS | REPLACE | Change every slide's body font to Calibri. |
73
+
74
+ (`taxonomy.json` holds the verbatim `text` and `intent` for each template.)
THIRD_PARTY_NOTICES.md ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Third-Party Notices
2
+
3
+ DECKEDIT-BENCH redistributes real presentation decks. This file records
4
+ third-party content and its provenance. The dataset license (CC BY-NC 4.0,
5
+ non-commercial) applies to the benchmark's own contribution — the curation,
6
+ instructions, taxonomy, and metadata; third-party material embedded in the
7
+ decks remains under its respective rights, redistributed here for
8
+ **non-commercial research use** only.
9
+
10
+ ## Deck contributions
11
+
12
+ Source decks (lecture, seminar, paper-review, proposal, and report
13
+ presentations) are redistributed with the permission of their authors. Author,
14
+ coauthor, comment, and revision-history names have been anonymized to
15
+ `Author A/B/…`; document-property authorship has been cleared.
16
+
17
+ ## Embedded figures in paper-review / lecture decks
18
+
19
+ Several decks (e.g. `01_Transformer`, `02_UTI`, `05_Immunotherapy`,
20
+ `06_SAMAudio`, `04_InnoCoreLLM`, and other research/lecture decks) contain
21
+ figures and diagrams originating from published papers and educational
22
+ materials, reproduced by the original deck authors. These figures remain the
23
+ property of their respective copyright holders and are included here only for
24
+ non-commercial research purposes. No additional license is granted over them.
25
+
26
+ ## `11_FourthIndustryStartup` — replacement imagery
27
+
28
+ This deck was rebuilt to remove a commercial third-party template. The slide
29
+ photographs are sourced from **Unsplash** (https://unsplash.com) under the
30
+ **Unsplash License** (free to use, including commercially, no attribution
31
+ required). The small augmented-reality illustration on slide 5 is an original
32
+ graphic created for this benchmark.
33
+
34
+ ## Brand and product names
35
+
36
+ Decks mention real product, platform, and organization names (e.g. in the
37
+ metaverse-overview deck) as descriptive references. Such names are trademarks of
38
+ their respective owners; their mention does not imply affiliation or endorsement.
39
+
40
+ ## Reporting
41
+
42
+ If you are a rights holder and have a concern about any redistributed content,
43
+ please contact the authors (contact withheld for double-blind review) to request correction or
44
+ removal.
deck_info.json ADDED
@@ -0,0 +1,1118 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "size_categories": {
3
+ "Short": "≤10 slides",
4
+ "Medium": "11-30 slides",
5
+ "Long": ">30 slides"
6
+ },
7
+ "decks": [
8
+ {
9
+ "id": "01_CausalAGI",
10
+ "path": "decks/Short/01_CausalAGI.pptx",
11
+ "size_category": "Short",
12
+ "slide_count": 9,
13
+ "language": "ko",
14
+ "topic": "AGI 동적 인과 추론 — 금융 omnimodal causal AGI 제안서",
15
+ "visuals": {
16
+ "picture": {
17
+ "slides": [
18
+ 1,
19
+ 3,
20
+ 4,
21
+ 5,
22
+ 6,
23
+ 7,
24
+ 8
25
+ ],
26
+ "count": 17
27
+ },
28
+ "table": {
29
+ "slides": [],
30
+ "count": 0
31
+ },
32
+ "chart": {
33
+ "slides": [],
34
+ "count": 0
35
+ }
36
+ }
37
+ },
38
+ {
39
+ "id": "02_RemoteWorkSurvey",
40
+ "path": "decks/Short/02_RemoteWorkSurvey.pptx",
41
+ "size_category": "Short",
42
+ "slide_count": 8,
43
+ "language": "en",
44
+ "topic": "Remote work survey research report",
45
+ "visuals": {
46
+ "picture": {
47
+ "slides": [],
48
+ "count": 0
49
+ },
50
+ "table": {
51
+ "slides": [],
52
+ "count": 0
53
+ },
54
+ "chart": {
55
+ "slides": [
56
+ 3,
57
+ 4,
58
+ 5,
59
+ 6
60
+ ],
61
+ "count": 4
62
+ }
63
+ }
64
+ },
65
+ {
66
+ "id": "03_ASRMathLearning",
67
+ "path": "decks/Short/03_ASRMathLearning.pptx",
68
+ "size_category": "Short",
69
+ "slide_count": 1,
70
+ "language": "en",
71
+ "topic": "ASR/TTS for accessible math learning (poster)",
72
+ "visuals": {
73
+ "picture": {
74
+ "slides": [
75
+ 1
76
+ ],
77
+ "count": 10
78
+ },
79
+ "table": {
80
+ "slides": [],
81
+ "count": 0
82
+ },
83
+ "chart": {
84
+ "slides": [],
85
+ "count": 0
86
+ }
87
+ }
88
+ },
89
+ {
90
+ "id": "04_OmniBench",
91
+ "path": "decks/Short/04_OmniBench.pptx",
92
+ "size_category": "Short",
93
+ "slide_count": 1,
94
+ "language": "en",
95
+ "topic": "OmniBench benchmark overview (poster)",
96
+ "visuals": {
97
+ "picture": {
98
+ "slides": [
99
+ 1
100
+ ],
101
+ "count": 4
102
+ },
103
+ "table": {
104
+ "slides": [],
105
+ "count": 0
106
+ },
107
+ "chart": {
108
+ "slides": [],
109
+ "count": 0
110
+ }
111
+ }
112
+ },
113
+ {
114
+ "id": "05_CultureHistory",
115
+ "path": "decks/Short/05_CultureHistory.pptx",
116
+ "size_category": "Short",
117
+ "slide_count": 1,
118
+ "language": "ko",
119
+ "topic": "광역도시계획 — 도시종합계획 case study",
120
+ "visuals": {
121
+ "picture": {
122
+ "slides": [
123
+ 1
124
+ ],
125
+ "count": 4
126
+ },
127
+ "table": {
128
+ "slides": [
129
+ 1
130
+ ],
131
+ "count": 2
132
+ },
133
+ "chart": {
134
+ "slides": [
135
+ 1
136
+ ],
137
+ "count": 3
138
+ }
139
+ }
140
+ },
141
+ {
142
+ "id": "06_NLPMeeting",
143
+ "path": "decks/Short/06_NLPMeeting.pptx",
144
+ "size_category": "Short",
145
+ "slide_count": 5,
146
+ "language": "en",
147
+ "topic": "NLP group meeting — Korean codec training",
148
+ "visuals": {
149
+ "picture": {
150
+ "slides": [
151
+ 2,
152
+ 3,
153
+ 4
154
+ ],
155
+ "count": 4
156
+ },
157
+ "table": {
158
+ "slides": [],
159
+ "count": 0
160
+ },
161
+ "chart": {
162
+ "slides": [],
163
+ "count": 0
164
+ }
165
+ }
166
+ },
167
+ {
168
+ "id": "07_PINN_LSTM",
169
+ "path": "decks/Short/07_PINN_LSTM.pptx",
170
+ "size_category": "Short",
171
+ "slide_count": 8,
172
+ "language": "en",
173
+ "topic": "PINN-LSTM semiconductor degradation prediction (idea pitch)",
174
+ "visuals": {
175
+ "picture": {
176
+ "slides": [
177
+ 4,
178
+ 5,
179
+ 7
180
+ ],
181
+ "count": 4
182
+ },
183
+ "table": {
184
+ "slides": [],
185
+ "count": 0
186
+ },
187
+ "chart": {
188
+ "slides": [],
189
+ "count": 0
190
+ }
191
+ }
192
+ },
193
+ {
194
+ "id": "08_UKComputerEducation",
195
+ "path": "decks/Short/08_UKComputerEducation.pptx",
196
+ "size_category": "Short",
197
+ "slide_count": 5,
198
+ "language": "ko",
199
+ "topic": "UK computer education curriculum overview",
200
+ "visuals": {
201
+ "picture": {
202
+ "slides": [
203
+ 1,
204
+ 3,
205
+ 4,
206
+ 5
207
+ ],
208
+ "count": 7
209
+ },
210
+ "table": {
211
+ "slides": [],
212
+ "count": 0
213
+ },
214
+ "chart": {
215
+ "slides": [],
216
+ "count": 0
217
+ }
218
+ }
219
+ },
220
+ {
221
+ "id": "09_ApexAnalytics",
222
+ "path": "decks/Short/09_ApexAnalytics.pptx",
223
+ "size_category": "Short",
224
+ "slide_count": 8,
225
+ "language": "en",
226
+ "topic": "Synthetic quarterly business report — 6 charts (column/pie/line/bar incl. dual-chart slide)",
227
+ "visuals": {
228
+ "picture": {
229
+ "slides": [],
230
+ "count": 0
231
+ },
232
+ "table": {
233
+ "slides": [],
234
+ "count": 0
235
+ },
236
+ "chart": {
237
+ "slides": [
238
+ 3,
239
+ 4,
240
+ 5,
241
+ 6,
242
+ 7
243
+ ],
244
+ "count": 6
245
+ }
246
+ }
247
+ },
248
+ {
249
+ "id": "01_OverseasNews",
250
+ "path": "decks/Medium/01_OverseasNews.pptx",
251
+ "size_category": "Medium",
252
+ "slide_count": 30,
253
+ "language": "en",
254
+ "topic": "Weekly overseas news article review",
255
+ "visuals": {
256
+ "picture": {
257
+ "slides": [
258
+ 3,
259
+ 4,
260
+ 5,
261
+ 7,
262
+ 8,
263
+ 9,
264
+ 10,
265
+ 11,
266
+ 13,
267
+ 15,
268
+ 21,
269
+ 23,
270
+ 24,
271
+ 26,
272
+ 27,
273
+ 28,
274
+ 29
275
+ ],
276
+ "count": 24
277
+ },
278
+ "table": {
279
+ "slides": [
280
+ 16,
281
+ 18,
282
+ 19
283
+ ],
284
+ "count": 3
285
+ },
286
+ "chart": {
287
+ "slides": [],
288
+ "count": 0
289
+ }
290
+ }
291
+ },
292
+ {
293
+ "id": "02_SpeechAI",
294
+ "path": "decks/Medium/02_SpeechAI.pptx",
295
+ "size_category": "Medium",
296
+ "slide_count": 23,
297
+ "language": "en",
298
+ "topic": "Speech AI seminar — codec and TTS overview",
299
+ "visuals": {
300
+ "picture": {
301
+ "slides": [
302
+ 2,
303
+ 3,
304
+ 4,
305
+ 5,
306
+ 6,
307
+ 7,
308
+ 8,
309
+ 9,
310
+ 10,
311
+ 11,
312
+ 12,
313
+ 13,
314
+ 14,
315
+ 16,
316
+ 18,
317
+ 19,
318
+ 20,
319
+ 21,
320
+ 22
321
+ ],
322
+ "count": 53
323
+ },
324
+ "table": {
325
+ "slides": [
326
+ 8,
327
+ 9,
328
+ 18,
329
+ 19,
330
+ 20
331
+ ],
332
+ "count": 11
333
+ },
334
+ "chart": {
335
+ "slides": [],
336
+ "count": 0
337
+ }
338
+ }
339
+ },
340
+ {
341
+ "id": "03_DataCentricSpeech",
342
+ "path": "decks/Medium/03_DataCentricSpeech.pptx",
343
+ "size_category": "Medium",
344
+ "slide_count": 22,
345
+ "language": "en",
346
+ "topic": "Data-centric Speech-Language pretraining",
347
+ "visuals": {
348
+ "picture": {
349
+ "slides": [
350
+ 1,
351
+ 2,
352
+ 3,
353
+ 4,
354
+ 5,
355
+ 6,
356
+ 7,
357
+ 9,
358
+ 10,
359
+ 11,
360
+ 12,
361
+ 13,
362
+ 15,
363
+ 16,
364
+ 17,
365
+ 18,
366
+ 19,
367
+ 20,
368
+ 21,
369
+ 22
370
+ ],
371
+ "count": 27
372
+ },
373
+ "table": {
374
+ "slides": [],
375
+ "count": 0
376
+ },
377
+ "chart": {
378
+ "slides": [],
379
+ "count": 0
380
+ }
381
+ }
382
+ },
383
+ {
384
+ "id": "04_ASR_OCR",
385
+ "path": "decks/Medium/04_ASR_OCR.pptx",
386
+ "size_category": "Medium",
387
+ "slide_count": 20,
388
+ "language": "en",
389
+ "topic": "ASR enhancement via OCR word-frequency analysis",
390
+ "visuals": {
391
+ "picture": {
392
+ "slides": [
393
+ 1,
394
+ 5,
395
+ 6,
396
+ 7,
397
+ 9,
398
+ 10,
399
+ 11,
400
+ 15,
401
+ 16,
402
+ 18
403
+ ],
404
+ "count": 15
405
+ },
406
+ "table": {
407
+ "slides": [],
408
+ "count": 0
409
+ },
410
+ "chart": {
411
+ "slides": [],
412
+ "count": 0
413
+ }
414
+ }
415
+ },
416
+ {
417
+ "id": "05_MingUniAudio",
418
+ "path": "decks/Medium/05_MingUniAudio.pptx",
419
+ "size_category": "Medium",
420
+ "slide_count": 22,
421
+ "language": "en",
422
+ "topic": "MingTok-Audio — unified audio understanding & generation",
423
+ "visuals": {
424
+ "picture": {
425
+ "slides": [
426
+ 1,
427
+ 2,
428
+ 4,
429
+ 5,
430
+ 6,
431
+ 7,
432
+ 8,
433
+ 9,
434
+ 10,
435
+ 11,
436
+ 12,
437
+ 13,
438
+ 15,
439
+ 16,
440
+ 17,
441
+ 18,
442
+ 20,
443
+ 21,
444
+ 22
445
+ ],
446
+ "count": 30
447
+ },
448
+ "table": {
449
+ "slides": [],
450
+ "count": 0
451
+ },
452
+ "chart": {
453
+ "slides": [],
454
+ "count": 0
455
+ }
456
+ }
457
+ },
458
+ {
459
+ "id": "06_SAMAudio",
460
+ "path": "decks/Medium/06_SAMAudio.pptx",
461
+ "size_category": "Medium",
462
+ "slide_count": 22,
463
+ "language": "en",
464
+ "topic": "SAM Audio — audio-visual data in Diffusion Transformer",
465
+ "visuals": {
466
+ "picture": {
467
+ "slides": [
468
+ 1,
469
+ 4,
470
+ 6,
471
+ 10,
472
+ 11,
473
+ 12,
474
+ 14,
475
+ 15,
476
+ 16,
477
+ 17,
478
+ 19,
479
+ 20,
480
+ 21,
481
+ 22
482
+ ],
483
+ "count": 14
484
+ },
485
+ "table": {
486
+ "slides": [
487
+ 21
488
+ ],
489
+ "count": 1
490
+ },
491
+ "chart": {
492
+ "slides": [],
493
+ "count": 0
494
+ }
495
+ }
496
+ },
497
+ {
498
+ "id": "07_SpeechMeeting",
499
+ "path": "decks/Medium/07_SpeechMeeting.pptx",
500
+ "size_category": "Medium",
501
+ "slide_count": 16,
502
+ "language": "en",
503
+ "topic": "NLP group meeting — Speech & Language research topics (ASR/TTS, SpeechLM)",
504
+ "visuals": {
505
+ "picture": {
506
+ "slides": [
507
+ 1,
508
+ 3,
509
+ 4,
510
+ 5,
511
+ 8,
512
+ 9,
513
+ 11
514
+ ],
515
+ "count": 7
516
+ },
517
+ "table": {
518
+ "slides": [],
519
+ "count": 0
520
+ },
521
+ "chart": {
522
+ "slides": [],
523
+ "count": 0
524
+ }
525
+ }
526
+ },
527
+ {
528
+ "id": "08_TTSMeeting",
529
+ "path": "decks/Medium/08_TTSMeeting.pptx",
530
+ "size_category": "Medium",
531
+ "slide_count": 14,
532
+ "language": "en",
533
+ "topic": "NLP group meeting — TTS model training pipeline, codec multi-GPU",
534
+ "visuals": {
535
+ "picture": {
536
+ "slides": [
537
+ 1,
538
+ 3,
539
+ 5,
540
+ 6,
541
+ 7,
542
+ 8,
543
+ 9,
544
+ 10,
545
+ 11,
546
+ 12,
547
+ 13
548
+ ],
549
+ "count": 13
550
+ },
551
+ "table": {
552
+ "slides": [
553
+ 7
554
+ ],
555
+ "count": 1
556
+ },
557
+ "chart": {
558
+ "slides": [],
559
+ "count": 0
560
+ }
561
+ }
562
+ },
563
+ {
564
+ "id": "09_ImpactReporting",
565
+ "path": "decks/Medium/09_ImpactReporting.pptx",
566
+ "size_category": "Medium",
567
+ "slide_count": 30,
568
+ "language": "en",
569
+ "topic": "AI-based impact reporting automation and hidden impact discovery",
570
+ "visuals": {
571
+ "picture": {
572
+ "slides": [
573
+ 1,
574
+ 3,
575
+ 4,
576
+ 5,
577
+ 7,
578
+ 8,
579
+ 9,
580
+ 10,
581
+ 11,
582
+ 12,
583
+ 13,
584
+ 14,
585
+ 15,
586
+ 16,
587
+ 17,
588
+ 18,
589
+ 19,
590
+ 20,
591
+ 21,
592
+ 22,
593
+ 23,
594
+ 24,
595
+ 25,
596
+ 26,
597
+ 27,
598
+ 28,
599
+ 29,
600
+ 30
601
+ ],
602
+ "count": 111
603
+ },
604
+ "table": {
605
+ "slides": [
606
+ 29,
607
+ 30
608
+ ],
609
+ "count": 2
610
+ },
611
+ "chart": {
612
+ "slides": [],
613
+ "count": 0
614
+ }
615
+ }
616
+ },
617
+ {
618
+ "id": "10_MOSFET_HCI",
619
+ "path": "decks/Medium/10_MOSFET_HCI.pptx",
620
+ "size_category": "Medium",
621
+ "slide_count": 12,
622
+ "language": "en",
623
+ "topic": "MOSFET HCI (Hot Carrier Injection) degradation simulation and modeling",
624
+ "visuals": {
625
+ "picture": {
626
+ "slides": [
627
+ 2,
628
+ 3,
629
+ 4,
630
+ 5,
631
+ 6,
632
+ 7,
633
+ 8,
634
+ 9,
635
+ 10,
636
+ 11,
637
+ 12
638
+ ],
639
+ "count": 45
640
+ },
641
+ "table": {
642
+ "slides": [],
643
+ "count": 0
644
+ },
645
+ "chart": {
646
+ "slides": [],
647
+ "count": 0
648
+ }
649
+ }
650
+ },
651
+ {
652
+ "id": "11_FourthIndustryStartup",
653
+ "path": "decks/Medium/11_FourthIndustryStartup.pptx",
654
+ "size_category": "Medium",
655
+ "slide_count": 15,
656
+ "language": "ko",
657
+ "topic": "4차 산업혁명과 스타트업 — VR/AR/메타버스 개요",
658
+ "visuals": {
659
+ "picture": {
660
+ "slides": [
661
+ 2,
662
+ 4,
663
+ 5,
664
+ 6,
665
+ 7,
666
+ 8,
667
+ 9,
668
+ 11,
669
+ 13,
670
+ 14
671
+ ],
672
+ "count": 16
673
+ },
674
+ "table": {
675
+ "slides": [
676
+ 3,
677
+ 12
678
+ ],
679
+ "count": 3
680
+ },
681
+ "chart": {
682
+ "slides": [],
683
+ "count": 0
684
+ }
685
+ }
686
+ },
687
+ {
688
+ "id": "12_AntonyAndCleopatra",
689
+ "path": "decks/Medium/12_AntonyAndCleopatra.pptx",
690
+ "size_category": "Medium",
691
+ "slide_count": 15,
692
+ "language": "en",
693
+ "topic": "Shakespeare 'Antony and Cleopatra' Act I — text-only deck (Scene 1/2/3)",
694
+ "visuals": {
695
+ "picture": {
696
+ "slides": [],
697
+ "count": 0
698
+ },
699
+ "table": {
700
+ "slides": [],
701
+ "count": 0
702
+ },
703
+ "chart": {
704
+ "slides": [],
705
+ "count": 0
706
+ }
707
+ }
708
+ },
709
+ {
710
+ "id": "01_Transformer",
711
+ "path": "decks/Long/01_Transformer.pptx",
712
+ "size_category": "Long",
713
+ "slide_count": 49,
714
+ "language": "ko",
715
+ "topic": "Transformer / Vision Transformer 강의자료",
716
+ "visuals": {
717
+ "picture": {
718
+ "slides": [
719
+ 3,
720
+ 10,
721
+ 12,
722
+ 16,
723
+ 17,
724
+ 18,
725
+ 19,
726
+ 22,
727
+ 23,
728
+ 24,
729
+ 26,
730
+ 27,
731
+ 28,
732
+ 29,
733
+ 30,
734
+ 31,
735
+ 33,
736
+ 34,
737
+ 37,
738
+ 38,
739
+ 40,
740
+ 41,
741
+ 42,
742
+ 43,
743
+ 44,
744
+ 45,
745
+ 46,
746
+ 48,
747
+ 49
748
+ ],
749
+ "count": 134
750
+ },
751
+ "table": {
752
+ "slides": [
753
+ 5,
754
+ 39
755
+ ],
756
+ "count": 2
757
+ },
758
+ "chart": {
759
+ "slides": [],
760
+ "count": 0
761
+ }
762
+ }
763
+ },
764
+ {
765
+ "id": "02_UTI",
766
+ "path": "decks/Long/02_UTI.pptx",
767
+ "size_category": "Long",
768
+ "slide_count": 43,
769
+ "language": "en",
770
+ "topic": "Mechanisms of UTIs and rUTIs (paper review)",
771
+ "visuals": {
772
+ "picture": {
773
+ "slides": [
774
+ 1,
775
+ 2,
776
+ 3,
777
+ 4,
778
+ 5,
779
+ 6,
780
+ 7,
781
+ 8,
782
+ 9,
783
+ 10,
784
+ 11,
785
+ 12,
786
+ 13,
787
+ 14,
788
+ 15,
789
+ 16,
790
+ 17,
791
+ 18,
792
+ 19,
793
+ 20,
794
+ 21,
795
+ 22,
796
+ 23,
797
+ 24,
798
+ 25,
799
+ 26,
800
+ 27,
801
+ 28,
802
+ 29,
803
+ 30,
804
+ 31,
805
+ 32,
806
+ 33,
807
+ 34,
808
+ 35,
809
+ 36,
810
+ 37,
811
+ 38,
812
+ 39,
813
+ 40,
814
+ 41,
815
+ 42,
816
+ 43
817
+ ],
818
+ "count": 250
819
+ },
820
+ "table": {
821
+ "slides": [
822
+ 15
823
+ ],
824
+ "count": 1
825
+ },
826
+ "chart": {
827
+ "slides": [],
828
+ "count": 0
829
+ }
830
+ }
831
+ },
832
+ {
833
+ "id": "03_AbandonedSpace",
834
+ "path": "decks/Long/03_AbandonedSpace.pptx",
835
+ "size_category": "Long",
836
+ "slide_count": 37,
837
+ "language": "en",
838
+ "topic": "Abandoned space — photo / visual essay",
839
+ "visuals": {
840
+ "picture": {
841
+ "slides": [
842
+ 1,
843
+ 2,
844
+ 3,
845
+ 4,
846
+ 5,
847
+ 6,
848
+ 7,
849
+ 8,
850
+ 9,
851
+ 10,
852
+ 11,
853
+ 12,
854
+ 13,
855
+ 14,
856
+ 15,
857
+ 16,
858
+ 17,
859
+ 18,
860
+ 19,
861
+ 20,
862
+ 21,
863
+ 22,
864
+ 23,
865
+ 24,
866
+ 25,
867
+ 26,
868
+ 27,
869
+ 28,
870
+ 29,
871
+ 30,
872
+ 31,
873
+ 32,
874
+ 33,
875
+ 34,
876
+ 35,
877
+ 36,
878
+ 37
879
+ ],
880
+ "count": 100
881
+ },
882
+ "table": {
883
+ "slides": [],
884
+ "count": 0
885
+ },
886
+ "chart": {
887
+ "slides": [],
888
+ "count": 0
889
+ }
890
+ }
891
+ },
892
+ {
893
+ "id": "04_InnoCoreLLM",
894
+ "path": "decks/Long/04_InnoCoreLLM.pptx",
895
+ "size_category": "Long",
896
+ "slide_count": 38,
897
+ "language": "en",
898
+ "topic": "LLM 2.0 vision — world-class LLM tech & talent base",
899
+ "visuals": {
900
+ "picture": {
901
+ "slides": [
902
+ 1,
903
+ 2,
904
+ 3,
905
+ 5,
906
+ 8,
907
+ 11,
908
+ 12,
909
+ 13,
910
+ 14,
911
+ 15,
912
+ 16,
913
+ 17,
914
+ 18,
915
+ 19,
916
+ 20,
917
+ 23,
918
+ 24,
919
+ 25,
920
+ 26,
921
+ 27,
922
+ 28,
923
+ 31,
924
+ 33,
925
+ 34,
926
+ 36
927
+ ],
928
+ "count": 188
929
+ },
930
+ "table": {
931
+ "slides": [
932
+ 27
933
+ ],
934
+ "count": 4
935
+ },
936
+ "chart": {
937
+ "slides": [],
938
+ "count": 0
939
+ }
940
+ }
941
+ },
942
+ {
943
+ "id": "05_Immunotherapy",
944
+ "path": "decks/Long/05_Immunotherapy.pptx",
945
+ "size_category": "Long",
946
+ "slide_count": 47,
947
+ "language": "en",
948
+ "topic": "Immunotherapy / CAR-T cell therapy (paper review)",
949
+ "visuals": {
950
+ "picture": {
951
+ "slides": [
952
+ 1,
953
+ 2,
954
+ 3,
955
+ 4,
956
+ 5,
957
+ 6,
958
+ 7,
959
+ 8,
960
+ 9,
961
+ 10,
962
+ 11,
963
+ 12,
964
+ 13,
965
+ 14,
966
+ 15,
967
+ 16,
968
+ 17,
969
+ 18,
970
+ 19,
971
+ 20,
972
+ 21,
973
+ 22,
974
+ 23,
975
+ 24,
976
+ 25,
977
+ 26,
978
+ 27,
979
+ 28,
980
+ 29,
981
+ 30,
982
+ 31,
983
+ 32,
984
+ 33,
985
+ 34,
986
+ 35,
987
+ 36,
988
+ 37,
989
+ 38,
990
+ 39,
991
+ 40,
992
+ 41,
993
+ 42,
994
+ 43,
995
+ 44,
996
+ 45,
997
+ 46,
998
+ 47
999
+ ],
1000
+ "count": 89
1001
+ },
1002
+ "table": {
1003
+ "slides": [],
1004
+ "count": 0
1005
+ },
1006
+ "chart": {
1007
+ "slides": [],
1008
+ "count": 0
1009
+ }
1010
+ }
1011
+ },
1012
+ {
1013
+ "id": "06_Algorithm",
1014
+ "path": "decks/Long/06_Algorithm.pptx",
1015
+ "size_category": "Long",
1016
+ "slide_count": 31,
1017
+ "language": "ko",
1018
+ "topic": "정렬/탐색 알고리즘 강의자료",
1019
+ "visuals": {
1020
+ "picture": {
1021
+ "slides": [
1022
+ 1,
1023
+ 3,
1024
+ 7,
1025
+ 9,
1026
+ 10,
1027
+ 11,
1028
+ 12,
1029
+ 13,
1030
+ 15,
1031
+ 16,
1032
+ 18,
1033
+ 19,
1034
+ 20,
1035
+ 23,
1036
+ 24,
1037
+ 25,
1038
+ 29,
1039
+ 30,
1040
+ 31
1041
+ ],
1042
+ "count": 49
1043
+ },
1044
+ "table": {
1045
+ "slides": [],
1046
+ "count": 0
1047
+ },
1048
+ "chart": {
1049
+ "slides": [],
1050
+ "count": 0
1051
+ }
1052
+ }
1053
+ },
1054
+ {
1055
+ "id": "07_HousingComplex",
1056
+ "path": "decks/Long/07_HousingComplex.pptx",
1057
+ "size_category": "Long",
1058
+ "slide_count": 50,
1059
+ "language": "ko",
1060
+ "topic": "단지 계획 — 1980/2010년대 아파트 단지 비교 분석 및 리모델링",
1061
+ "visuals": {
1062
+ "picture": {
1063
+ "slides": [
1064
+ 4,
1065
+ 9,
1066
+ 10,
1067
+ 11,
1068
+ 12,
1069
+ 13,
1070
+ 15,
1071
+ 16,
1072
+ 17,
1073
+ 18,
1074
+ 19,
1075
+ 20,
1076
+ 21,
1077
+ 23,
1078
+ 24,
1079
+ 25,
1080
+ 26,
1081
+ 27,
1082
+ 28,
1083
+ 29,
1084
+ 30,
1085
+ 31,
1086
+ 32,
1087
+ 33,
1088
+ 34,
1089
+ 36,
1090
+ 37,
1091
+ 38,
1092
+ 39,
1093
+ 40,
1094
+ 42,
1095
+ 43,
1096
+ 44,
1097
+ 45,
1098
+ 46,
1099
+ 50
1100
+ ],
1101
+ "count": 144
1102
+ },
1103
+ "table": {
1104
+ "slides": [
1105
+ 15,
1106
+ 17,
1107
+ 48
1108
+ ],
1109
+ "count": 4
1110
+ },
1111
+ "chart": {
1112
+ "slides": [],
1113
+ "count": 0
1114
+ }
1115
+ }
1116
+ }
1117
+ ]
1118
+ }
decks/Long/01_Transformer.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bfafeab4b6d301164e5e1b4d2f071f65f77a635b7c6dd02cb87118a15aa9f184
3
+ size 41300641
decks/Long/02_UTI.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:829605e40392a9a686a46719cae7b6e94abd872fafd44b9a162294811b63d648
3
+ size 21738072
decks/Long/03_AbandonedSpace.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2984946766429bec515c50ae65b78ddd62d44d4a5b407dd6921559a248b3534a
3
+ size 117874181
decks/Long/04_InnoCoreLLM.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08d02a978031f6ad074c83bf8845ecca7699452646a6d98a28e556ca9efd77fa
3
+ size 30590300
decks/Long/05_Immunotherapy.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d6eb72b49583ca72444fbb7572dd8b8cb33ddeb462cdebb34e18f07316068e88
3
+ size 17301135
decks/Long/06_Algorithm.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e7dae3c1a9f9362a4c30aa185fb2ad6cf8766991086c807d9e0d37b9abe6bd8
3
+ size 48390636
decks/Long/07_HousingComplex.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e1b53179875f3a6b83503ce5a83e055a4963fda72c9adbdc113c52c087daa17
3
+ size 347848194
decks/Medium/01_OverseasNews.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c0dc91f22b93bc66b16f6351114012f9d76b3ebf0a68ef78f3be9681d695804
3
+ size 10429056
decks/Medium/02_SpeechAI.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:92f486bab30a6812d742ef4a76f5dd8b92598326716d9be52a65498ddb820b37
3
+ size 128278049
decks/Medium/03_DataCentricSpeech.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb5bd53f30c17705f44139a296198362278eecbc48f30c27afb75e9bca2be91c
3
+ size 1810446
decks/Medium/04_ASR_OCR.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4e87394dc514ba02cca2d721616b4402d855a9a99b50c7f77e37cc1d785d7aee
3
+ size 270791
decks/Medium/05_MingUniAudio.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b7968112aef0efd8d8ffebf43ea75d747fe37bf60373db510f6a95675bd3b8d
3
+ size 1113540
decks/Medium/06_SAMAudio.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d8fdfcf4fc2bedf686d34639160c249cc96910f1ca5b0a8b49599467ba072a5f
3
+ size 10383810
decks/Medium/07_SpeechMeeting.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2600f57c883e0f61ea3039723af575f3c1382a2acb0a80a526dbf35f75d29465
3
+ size 1703978
decks/Medium/08_TTSMeeting.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:542b8f9b051871484a995bf9a186d18ac653a21feefbec7b3bd8f626d35aa1b8
3
+ size 1412315
decks/Medium/09_ImpactReporting.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94f48f24652bb3829de88c8a69e0347faade2736688a51c278cb67689008b450
3
+ size 70052990
decks/Medium/10_MOSFET_HCI.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8ae688df574e63e64a2572f784be666df4b8d7b901c2e0b32af87fc4b58d0f0
3
+ size 2374278
decks/Medium/11_FourthIndustryStartup.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a0b2803976f4902f78965a2e686208e4e745cdd829801a5f96136ca56f18bc7
3
+ size 6818332
decks/Medium/12_AntonyAndCleopatra.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d4893b546c168c4199f71947a25536cc8f225338dc56f981d97bdaea7321a3a
3
+ size 55093
decks/Short/01_CausalAGI.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0daee97fc3403c2934af061335c11c8de0bc5bd4370ae9dcce7bea896c099b03
3
+ size 89764816
decks/Short/02_RemoteWorkSurvey.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0bd778c08321efdae8c493f4d7dfe5bcdeb9cd8fe32bbdbeb09f9acd79b883a3
3
+ size 71447
decks/Short/03_ASRMathLearning.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e43c779efdd504d5e40570b1dbe2f4d31335a3cad7e96561e55fdc567540cbce
3
+ size 609065
decks/Short/04_OmniBench.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:154e51414dfe22126efd8d13f42a5cc41854fda7c06d8460b31f21a0731553a8
3
+ size 46898
decks/Short/05_CultureHistory.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bbffecc1f7df457a0e06869a0aa0a0b6e75d28e3f4f2c1068df2987c1d1306c9
3
+ size 376752
decks/Short/06_NLPMeeting.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b3253dbcf733dc2f89049c45b7297e210b899ff60929c052a22edcf4740390e
3
+ size 13697947
decks/Short/07_PINN_LSTM.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7c72a586d47fb4d0af0c5b2fc1ec73f46bd533f36cd5cfeedc7de1001848d5f
3
+ size 537978
decks/Short/08_UKComputerEducation.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:624995d950e3e1701296fdd219ca664713d3dcfb6e8ad062dae8049e37548ec4
3
+ size 11052291
decks/Short/09_ApexAnalytics.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:010d8f4f7d1a4f9878eaded6b8d1ccec046eee773a5cc304c3fe93afe3ca9be9
3
+ size 129974
prompts.jsonl ADDED
@@ -0,0 +1,183 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"deck_id": "01_CausalAGI", "id": "01_CausalAGI-01", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-04", "intent": "Apply a consistent title color across the 9-slide deck. Slide 1 has no text and should be silently skipped — tests the planner's ability to identify applicable slides. Color given without hex — also tests color-name resolution.", "text": "Change every slide's title color to green."}
2
+ {"deck_id": "01_CausalAGI", "id": "01_CausalAGI-02", "cell": "PC", "ops_per_slide": 3, "actions": ["REPLACE", "ADD"], "derived_from": "U-08", "intent": "Run three heterogeneous ops only on the DEMO subset (slides 6-9). Tests conditional targeting plus a mix of style change, text append, and new-shape creation at a non-default anchor (top-left).", "text": "For every slide whose title starts with 'DEMO', change the title color to dark red, append ' — Causal AGI' to the title, and add a small textbox 'Phase 2 Demo' at the top-left corner of the slide."}
3
+ {"deck_id": "01_CausalAGI", "id": "01_CausalAGI-03", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-01", "intent": "Make the deck uniformly English by translating its one Korean slide. Tests targeting a specific slide plus translation quality across multiple shapes on that slide.", "text": "On slide 4, translate all Korean text into English to make the deck uniformly English. Preserve the original slide layout, fonts, and bullet structure."}
4
+ {"deck_id": "01_CausalAGI", "id": "01_CausalAGI-04", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-22", "intent": "Multi-slide REPLACE — change body font across the deck to Calibri.", "text": "Change every slide's body font to Calibri."}
5
+ {"deck_id": "02_RemoteWorkSurvey", "id": "02_RemoteWorkSurvey-01", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-01", "intent": "Multi-slide REPLACE — translate every slide's text into Korean.", "text": "Translate every slide's text into Korean."}
6
+ {"deck_id": "02_RemoteWorkSurvey", "id": "02_RemoteWorkSurvey-02", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-slide multi-shape REPLACE — anonymize the three user-interview personas.", "text": "On slide 7 (User Interviews), replace each persona's name with 'Persona A', 'Persona B', 'Persona C' respectively."}
7
+ {"deck_id": "02_RemoteWorkSurvey", "id": "02_RemoteWorkSurvey-03", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-slide chart-agent REPLACE (per-point colors) — color each data point with progressively darker blue.", "text": "On every chart slide, color each data point (column or pie slice) with a different shade of blue, going from light blue to dark blue across the categories."}
8
+ {"deck_id": "02_RemoteWorkSurvey", "id": "02_RemoteWorkSurvey-04", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-slide multi-shape REPLACE — color the four methodology step circles distinctly.", "text": "On slide 2 (Methodology), color each of the four numbered circles (01, 02, 03, 04) with a different distinct color."}
9
+ {"deck_id": "02_RemoteWorkSurvey", "id": "02_RemoteWorkSurvey-05", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Chart-agent REPLACE (update_chart_structure.chart_type) — convert the Work Mode chart type.", "text": "On slide 3 (Work Mode chart), change the chart type to a pie chart."}
10
+ {"deck_id": "02_RemoteWorkSurvey", "id": "02_RemoteWorkSurvey-06", "cell": "EC", "ops_per_slide": 2, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Chart-agent REPLACE (update_chart_axes) — add Y axis title and set a fixed range.", "text": "On slide 5 (Productivity by Age chart), set the Y axis title to 'Productivity Change (%)' and the Y axis range to -20 to 50."}
11
+ {"deck_id": "02_RemoteWorkSurvey", "id": "02_RemoteWorkSurvey-07", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Chart-agent REPLACE (update_chart_structure.legend_position) — reposition the legend.", "text": "On slide 6 (Pain Points chart), move the legend to the bottom."}
12
+ {"deck_id": "03_ASRMathLearning", "id": "03_ASRMathLearning-01", "cell": "ES", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-02", "intent": "Single-shape text-style change at the run level — each word gets a distinct color, requiring per-run formatting on the title textbox.", "text": "Change the title so each word is a different color."}
13
+ {"deck_id": "03_ASRMathLearning", "id": "03_ASRMathLearning-02", "cell": "EC", "ops_per_slide": 2, "actions": ["REPLACE"], "derived_from": "U-03", "intent": "Multi-shape style change targeting all section header labels on a single slide.", "text": "Make all the section header labels (Abstract, Methodology, ...) underlined and Orange."}
14
+ {"deck_id": "03_ASRMathLearning", "id": "03_ASRMathLearning-03", "cell": "EC", "ops_per_slide": 2, "actions": ["ADD"], "derived_from": "U-21", "intent": "Two ADDs on a single slide — corner labels.", "text": "Add a small textbox 'GTC 2025' at the top-right corner of the slide and another small textbox '★ Poster' at the top-left corner."}
15
+ {"deck_id": "03_ASRMathLearning", "id": "03_ASRMathLearning-04", "cell": "EC", "ops_per_slide": 1, "actions": ["DELETE"], "derived_from": "U-10", "intent": "Multi-shape DELETE on a single slide — locate and remove every university logo (the deck has 10 pictures total; logos are a subset).", "text": "Delete all the university logos."}
16
+ {"deck_id": "03_ASRMathLearning", "id": "03_ASRMathLearning-05", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-22", "intent": "Multi-slide REPLACE — change body font across the deck to Arial.", "text": "Change every slide's body font to Arial."}
17
+ {"deck_id": "04_OmniBench", "id": "04_OmniBench-01", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-01", "intent": "Translate all text on the slide into English. Multi-shape REPLACE on a single slide.", "text": "Translate all text on the slide into English."}
18
+ {"deck_id": "04_OmniBench", "id": "04_OmniBench-02", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-shape color REPLACE — recolor every gray-filled box to a brighter shade.", "text": "Change all the gray boxes on the slide to brighter colors."}
19
+ {"deck_id": "04_OmniBench", "id": "04_OmniBench-03", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Find typos across the slide text and replace them with correct spellings. Multi-shape REPLACE — agent must scan text content, identify errors, and fix them.", "text": "Find any typos in the slide text and fix them."}
20
+ {"deck_id": "04_OmniBench", "id": "04_OmniBench-04", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-slide multi-shape REPLACE — apply grayscale to every image on the slide (tests edit_image).", "text": "On the only slide, change every image to grayscale."}
21
+ {"deck_id": "05_CultureHistory", "id": "05_CultureHistory-01", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-table style REPLACE — bold the header row text and apply a contrasting background color.", "text": "Change the population/area table's header row to bold white text on a dark teal background."}
22
+ {"deck_id": "05_CultureHistory", "id": "05_CultureHistory-02", "cell": "EC", "ops_per_slide": 2, "actions": ["REPLACE"], "derived_from": "U-03", "intent": "Multi-shape style change targeting the five main section header labels.", "text": "Make the five main section header labels bold and red."}
23
+ {"deck_id": "05_CultureHistory", "id": "05_CultureHistory-03", "cell": "ES", "ops_per_slide": 1, "actions": ["DELETE"], "derived_from": "U-09", "intent": "Single-shape DELETE — remove the course/student-info textbox.", "text": "Delete the textbox that contains the course year and student names."}
24
+ {"deck_id": "05_CultureHistory", "id": "05_CultureHistory-04", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Chart-agent color exercise — recolor every chart on the slide with a unified palette (tests update_chart_colors).", "text": "Change the color palette of every chart on the slide to shades of teal."}
25
+ {"deck_id": "05_CultureHistory", "id": "05_CultureHistory-05", "cell": "EC", "ops_per_slide": 1, "actions": ["ADD"], "derived_from": "deck-specific", "intent": "Chart-agent structural exercise — add a title to every chart (tests update_chart_structure). Different surface from prompt 04 so the two chart prompts hit distinct chart-tool paths.", "text": "Add the title 'Forecast' to every chart on the slide."}
26
+ {"deck_id": "05_CultureHistory", "id": "05_CultureHistory-06", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Theme color shift across the entire slide — replace every blue color with a yellow equivalent while preserving original brightness/value (dark blue → dark yellow, light blue → light yellow). Tests color reasoning + multi-shape REPLACE.", "text": "Replace every blue color on the slide with a yellow equivalent of the same brightness — so dark blue becomes dark yellow, light blue becomes light yellow."}
27
+ {"deck_id": "06_NLPMeeting", "id": "06_NLPMeeting-01", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-04", "intent": "Apply a consistent title color. Slides without a title (2, 3) should be silently skipped.", "text": "Change every slide's title color to yellow."}
28
+ {"deck_id": "06_NLPMeeting", "id": "06_NLPMeeting-02", "cell": "EC", "ops_per_slide": 3, "actions": ["REPLACE"], "derived_from": "U-03", "intent": "Three style ops on multiple shapes of slide 5 — title color, body font, and a run-level underline on the embedded URL.", "text": "On slide 5, change the title color to red, change the body content text font to Calibri, and underline the link in the body content."}
29
+ {"deck_id": "06_NLPMeeting", "id": "06_NLPMeeting-03", "cell": "PC", "ops_per_slide": 2, "actions": ["REPLACE", "ADD"], "derived_from": "U-06", "intent": "Two ops on the title-bearing slides — color change + date suffix.", "text": "On slides 1, 4, and 5, change the title color to green and append ' (2025-09-26)' to the title text."}
30
+ {"deck_id": "06_NLPMeeting", "id": "06_NLPMeeting-04", "cell": "ES", "ops_per_slide": 1, "actions": ["DELETE"], "derived_from": "U-09", "intent": "Single-shape DELETE on a single slide.", "text": "On slide 5, delete the citation textbox."}
31
+ {"deck_id": "06_NLPMeeting", "id": "06_NLPMeeting-05", "cell": "PS", "ops_per_slide": 1, "actions": ["SLIDE"], "derived_from": "U-13", "intent": "Apply a uniform transition across the whole deck.", "text": "Apply a fade transition to every slide."}
32
+ {"deck_id": "06_NLPMeeting", "id": "06_NLPMeeting-06", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-22", "intent": "Multi-slide REPLACE — change body font across the deck to Times New Roman.", "text": "Change every slide's body font to Times New Roman."}
33
+ {"deck_id": "07_PINN_LSTM", "id": "07_PINN_LSTM-01", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-04", "intent": "Reformat the chapter label across slides 3-8.", "text": "On slides 3 through 8, change the chapter label style from 'NN · TITLE' to 'Part N — Title'."}
34
+ {"deck_id": "07_PINN_LSTM", "id": "07_PINN_LSTM-02", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Simple multi-shape style change on the Contents page (slide 2).", "text": "On slide 2, italicize all six description items (the short lines like 'Deterministic Physics Simulator')."}
35
+ {"deck_id": "07_PINN_LSTM", "id": "07_PINN_LSTM-03", "cell": "PC", "ops_per_slide": 2, "actions": ["REPLACE", "ADD"], "derived_from": "U-07", "intent": "Two direct ops on every chapter slide. Uses {i} for pattern-mode indexing.", "text": "For slides 3 through 8, bold the title text and append ' (slide {i})' to the subtitle."}
36
+ {"deck_id": "07_PINN_LSTM", "id": "07_PINN_LSTM-04", "cell": "PS", "ops_per_slide": 1, "actions": ["DELETE"], "derived_from": "U-10", "intent": "Multi-slide DELETE — remove every image shape across the deck. Slides without images naturally no-op (per deck_info.json, pictures appear on slides 4, 5, 7 only — total 4 pictures).", "text": "On every slide, delete all image shapes."}
37
+ {"deck_id": "07_PINN_LSTM", "id": "07_PINN_LSTM-05", "cell": "PS", "ops_per_slide": 1, "actions": ["SLIDE"], "derived_from": "U-16", "intent": "Apply a uniform background across the chapter slides only. Tests SLIDE action on a subset of slides.", "text": "Set the background of slides 3 through 8 to a very light cream color."}
38
+ {"deck_id": "07_PINN_LSTM", "id": "07_PINN_LSTM-06", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Convert all numbering on a single slide to Roman numerals. EC because the op touches multiple number shapes on one slide (slide 7 has 4 card numbers and 4 circled workflow steps).", "text": "On slide 7, replace all the number labels with Roman numerals."}
39
+ {"deck_id": "07_PINN_LSTM", "id": "07_PINN_LSTM-07", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-22", "intent": "Multi-slide REPLACE — change body font across the deck to Calibri.", "text": "Change every slide's body font to Calibri."}
40
+ {"deck_id": "08_UKComputerEducation", "id": "08_UKComputerEducation-01", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-01", "intent": "Multi-slide REPLACE — translate every slide's text into English.", "text": "Translate every slide's text into English."}
41
+ {"deck_id": "08_UKComputerEducation", "id": "08_UKComputerEducation-02", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-slide multi-shape REPLACE — give each of the three category boxes a distinct color.", "text": "On slide 3, color each of the three category boxes with a different distinct color."}
42
+ {"deck_id": "08_UKComputerEducation", "id": "08_UKComputerEducation-03", "cell": "ES", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-shape REPLACE — anonymize the presenter name on the Thank you slide.", "text": "On slide 5, replace the presenter name with 'Anonymous'."}
43
+ {"deck_id": "08_UKComputerEducation", "id": "08_UKComputerEducation-04", "cell": "EC", "ops_per_slide": 2, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-slide multi-shape REPLACE — highlight the two key statistics on slide 4.", "text": "On slide 4, increase the font size of the '4600+' and '31K' statistics by 12 points and color them red."}
44
+ {"deck_id": "08_UKComputerEducation", "id": "08_UKComputerEducation-05", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-slide REPLACE — bold the recurring organization acronyms.", "text": "On every slide that mentions 'BCS' or 'CAS', bold every occurrence."}
45
+ {"deck_id": "08_UKComputerEducation", "id": "08_UKComputerEducation-06", "cell": "PC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-slide × multi-shape layout REPLACE — make the box layout consistent across slides 2 and 3 (uniform positioning + even spacing).", "text": "On slides 2 and 3, align the box shapes to have consistent positioning and even spacing."}
46
+ {"deck_id": "09_ApexAnalytics", "id": "09_ApexAnalytics-01", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-slide multi-shape REPLACE — bold every financial figure on the Executive Summary slide.", "text": "On slide 2 (Executive Summary), bold every dollar amount and percentage figure in the bullet list."}
47
+ {"deck_id": "09_ApexAnalytics", "id": "09_ApexAnalytics-02", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-22", "intent": "Multi-slide REPLACE — change body font across the deck.", "text": "Change every slide's body font to Calibri."}
48
+ {"deck_id": "09_ApexAnalytics", "id": "09_ApexAnalytics-03", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Chart-agent REPLACE (update_chart_colors with point_index) — give each data point in every chart a distinct color, exercising per-point coloring across columns / pie slices / line markers.", "text": "On every chart in the deck, color each data point (column / pie slice / line marker) with a different distinct color. Use a 6-color palette (red, orange, yellow, green, blue, purple), repeating if a chart has more than 6 points."}
49
+ {"deck_id": "09_ApexAnalytics", "id": "09_ApexAnalytics-04", "cell": "EC", "ops_per_slide": 1, "actions": ["ADD"], "derived_from": "deck-specific", "intent": "Chart-agent ADD (update_chart_series.add) — append a new series to the line chart.", "text": "On slide 5 line chart, add a new series 'Product C' with values [50, 75, 100, 130, 165]."}
50
+ {"deck_id": "09_ApexAnalytics", "id": "09_ApexAnalytics-05", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Chart-agent REPLACE (update_chart_categories) — rename category labels.", "text": "On slide 6 bar chart, rename each category to its uppercase form."}
51
+ {"deck_id": "09_ApexAnalytics", "id": "09_ApexAnalytics-06", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Chart-agent REPLACE (update_chart_structure.chart_type) — convert chart type.", "text": "On slide 3 column chart, change the chart type to horizontal bar."}
52
+ {"deck_id": "09_ApexAnalytics", "id": "09_ApexAnalytics-07", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Chart-agent REPLACE (update_chart_axes.y_axis) — set Y axis range.", "text": "On slide 5 line chart, set the Y axis range to 0-300."}
53
+ {"deck_id": "09_ApexAnalytics", "id": "09_ApexAnalytics-08", "cell": "EC", "ops_per_slide": 2, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Chart-agent REPLACE (update_chart_structure.new_title + legend_position) — change title text and move legend.", "text": "On slide 4 pie chart, change the chart title to 'Q4 Revenue Split' and move the legend to the bottom."}
54
+ {"deck_id": "09_ApexAnalytics", "id": "09_ApexAnalytics-09", "cell": "EC", "ops_per_slide": 2, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Chart-agent REPLACE (update_chart_series.rename + update_chart_axes.title) — series rename + axis title.", "text": "On slide 5 line chart, rename 'Product A' to 'Flagship Product' and add a Y axis title '$M'."}
55
+ {"deck_id": "01_OverseasNews", "id": "01_OverseasNews-01", "cell": "ES", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-shape REPLACE on the title slide — agent must identify what constitutes 'privacy text' (student ID, name, email, etc.) without explicit listing.", "text": "On slide 1, replace the privacy text with 'Anonymized'."}
56
+ {"deck_id": "01_OverseasNews", "id": "01_OverseasNews-02", "cell": "EC", "ops_per_slide": 2, "actions": ["REPLACE"], "derived_from": "U-03", "intent": "Contents-page redesign — two distinct style ops on the multi-shape Contents page (slide 2).", "text": "On slide 2, bold the three section title items and italicize the three description sentences below them."}
57
+ {"deck_id": "01_OverseasNews", "id": "01_OverseasNews-03", "cell": "PS", "ops_per_slide": 1, "actions": ["DELETE"], "derived_from": "U-10", "intent": "Multi-slide DELETE — sweep out all citation textboxes across the deck.", "text": "On every slide, delete any small textbox whose text starts with 'Source:'."}
58
+ {"deck_id": "01_OverseasNews", "id": "01_OverseasNews-04", "cell": "PS", "ops_per_slide": 1, "actions": ["ADD"], "derived_from": "U-21", "intent": "Add page numbers across the deck using pattern-mode {i} indexing.", "text": "Add a small textbox '{i} / 30' at the bottom-right corner of every slide."}
59
+ {"deck_id": "01_OverseasNews", "id": "01_OverseasNews-05", "cell": "PC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-01", "intent": "Selective translation — Vietnamese passages exist on a subset of slides (11, 20, 22, 25). Tests language-aware filtering plus multi-shape REPLACE on the affected slides.", "text": "Translate every Vietnamese-language passage in the deck into Korean. Leave English-only slides unchanged."}
60
+ {"deck_id": "01_OverseasNews", "id": "01_OverseasNews-06", "cell": "PS", "ops_per_slide": 1, "actions": ["SLIDE"], "derived_from": "U-13", "intent": "Apply varied non-uniform transitions across the deck — no two consecutive slides share the same transition. Tests slide-agent dispatch over per-slide unique values.", "text": "Apply a different transition to each slide so that no two consecutive slides share the same transition."}
61
+ {"deck_id": "01_OverseasNews", "id": "01_OverseasNews-07", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-22", "intent": "Multi-slide REPLACE — change body font across the deck to Arial.", "text": "Change every slide's body font to Arial."}
62
+ {"deck_id": "02_SpeechAI", "id": "02_SpeechAI-01", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-01", "intent": "Translate Korean body content to English across the deck.", "text": "Translate every Korean passage in the deck into English."}
63
+ {"deck_id": "02_SpeechAI", "id": "02_SpeechAI-02", "cell": "PS", "ops_per_slide": 1, "actions": ["DELETE"], "derived_from": "U-10", "intent": "Multi-slide DELETE — clean up the repeated single-line paper metadata across every content slide.", "text": "On every slide, delete the conference-info text line."}
64
+ {"deck_id": "02_SpeechAI", "id": "02_SpeechAI-03", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-shape EC — distinct color per category box on the taxonomy slide.", "text": "On slide 2, give each of the four category boxes a different distinct color."}
65
+ {"deck_id": "02_SpeechAI", "id": "02_SpeechAI-04", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Privacy edit — anonymize the presenter name across the deck.", "text": "Replace the presenter name in the deck with 'Anonymous'."}
66
+ {"deck_id": "02_SpeechAI", "id": "02_SpeechAI-05", "cell": "PC", "ops_per_slide": 2, "actions": ["REPLACE"], "derived_from": "U-03", "intent": "Two ops on the take-home message slides of each paper — bold + size bump on the body content.", "text": "On the take-home message slides of each paper, bold the body content and increase its font size by 4 points."}
67
+ {"deck_id": "02_SpeechAI", "id": "02_SpeechAI-06", "cell": "PS", "ops_per_slide": 1, "actions": ["SLIDE"], "derived_from": "U-13", "intent": "Section-based varied transitions — different transition per paper section.", "text": "Apply a fade transition to slides 4 through 15 and a push transition to slides 16 through 23."}
68
+ {"deck_id": "02_SpeechAI", "id": "02_SpeechAI-07", "cell": "PC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-20", "intent": "Layout mirror — use slide 5 as a layout template for the Encodec paper section.", "text": "On slides 6-15, adjust each shape's position and size to match slide 5's layout."}
69
+ {"deck_id": "02_SpeechAI", "id": "02_SpeechAI-08", "cell": "PC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-20", "intent": "Layout mirror — use slide 16 as a layout template for the DiTTo paper section.", "text": "On slides 17-23, adjust each shape's position and size to match slide 16's layout."}
70
+ {"deck_id": "02_SpeechAI", "id": "02_SpeechAI-09", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-22", "intent": "Multi-slide REPLACE — change body font across the deck to Times New Roman.", "text": "Change every slide's body font to Times New Roman."}
71
+ {"deck_id": "03_DataCentricSpeech", "id": "03_DataCentricSpeech-01", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-slide REPLACE — fill in the placeholder organization name that appears on every slide.", "text": "On every slide, fill in the missing university-name placeholder with 'Apple Inc.'."}
72
+ {"deck_id": "03_DataCentricSpeech", "id": "03_DataCentricSpeech-02", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-slide REPLACE — convert the page-number footer notation to Chinese (Hanja) numerals.", "text": "On every slide, change the page-number footer to use Chinese (Hanja) numerals instead of Arabic digits."}
73
+ {"deck_id": "03_DataCentricSpeech", "id": "03_DataCentricSpeech-03", "cell": "PC", "ops_per_slide": 2, "actions": ["REPLACE"], "derived_from": "U-08", "intent": "Multi-slide × multi-shape REPLACE — give the paired category boxes contrasting colors on every slide that has them.", "text": "On every slide that has a pair of category boxes, give the two boxes contrasting colors."}
74
+ {"deck_id": "03_DataCentricSpeech", "id": "03_DataCentricSpeech-04", "cell": "ES", "ops_per_slide": 1, "actions": ["ADD"], "derived_from": "deck-specific", "intent": "Single-shape ADD — slide 1 lacks a real title; supply one.", "text": "On the first slide, add a large title textbox 'Data-Centric Speech-Language Pretraining' centered near the top."}
75
+ {"deck_id": "03_DataCentricSpeech", "id": "03_DataCentricSpeech-05", "cell": "ES", "ops_per_slide": 1, "actions": ["DELETE"], "derived_from": "U-09", "intent": "Single-shape DELETE — remove the 'Q&A' sub-label.", "text": "On the last slide, delete the 'Q&A' label."}
76
+ {"deck_id": "03_DataCentricSpeech", "id": "03_DataCentricSpeech-06", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-slide REPLACE — recolor every gray text shape across the deck to a single accent color.", "text": "On every slide, change all gray text to dark purple."}
77
+ {"deck_id": "03_DataCentricSpeech", "id": "03_DataCentricSpeech-07", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-22", "intent": "Multi-slide REPLACE — change body font across the deck to Calibri.", "text": "Change every slide's body font to Calibri."}
78
+ {"deck_id": "04_ASR_OCR", "id": "04_ASR_OCR-01", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Standardize the section-heading format across the deck — current titles have inconsistent spacing after the section number.", "text": "On every section slide, standardize the title format to 'NN. TITLE' with exactly one space after the period."}
79
+ {"deck_id": "04_ASR_OCR", "id": "04_ASR_OCR-02", "cell": "PS", "ops_per_slide": 1, "actions": ["DELETE"], "derived_from": "U-10", "intent": "Multi-slide DELETE — remove repeated paper-citation textboxes that appear on many slides.", "text": "On every slide, delete any small textbox containing a paper citation reference."}
80
+ {"deck_id": "04_ASR_OCR", "id": "04_ASR_OCR-03", "cell": "ES", "ops_per_slide": 1, "actions": ["ADD"], "derived_from": "deck-specific", "intent": "Single-shape ADD on the title slide — supply a conference/venue tag.", "text": "On the first slide, add a small textbox 'Conference Talk' below the existing subtitle."}
81
+ {"deck_id": "04_ASR_OCR", "id": "04_ASR_OCR-04", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Privacy edit — anonymize author names throughout the deck (title-slide author list + citations) with a placeholder name.", "text": "Replace all author names throughout the deck with 'John Doe'."}
82
+ {"deck_id": "04_ASR_OCR", "id": "04_ASR_OCR-05", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-01", "intent": "Multi-slide REPLACE — translate the deck content to Korean.", "text": "Translate all slides into Korean."}
83
+ {"deck_id": "04_ASR_OCR", "id": "04_ASR_OCR-06", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-22", "intent": "Multi-slide REPLACE — change body font across the deck to Arial.", "text": "Change every slide's body font to Arial."}
84
+ {"deck_id": "05_MingUniAudio", "id": "05_MingUniAudio-01", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Section-colored titles — different title color per paper section, tests value-varied PS dispatch.", "text": "For slides 4 through 12, change the title color to crimson. For slides 13 through 21, change the title color to emerald."}
85
+ {"deck_id": "05_MingUniAudio", "id": "05_MingUniAudio-02", "cell": "PS", "ops_per_slide": 1, "actions": ["DELETE"], "derived_from": "U-10", "intent": "Multi-slide DELETE — remove the unfilled placeholder shape from every slide (inverse approach to filling it in).", "text": "On every slide, delete the unfilled '[Name of University]' placeholder."}
86
+ {"deck_id": "05_MingUniAudio", "id": "05_MingUniAudio-03", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-slide REPLACE — emphasize the deck's central technical term across the deck via bold.", "text": "On every slide that mentions 'MingTok-Audio', bold every occurrence of the term."}
87
+ {"deck_id": "05_MingUniAudio", "id": "05_MingUniAudio-04", "cell": "ES", "ops_per_slide": 1, "actions": ["ADD"], "derived_from": "deck-specific", "intent": "Single-shape ADD — supply a real title to the empty title slide.", "text": "On the first slide, add a large title textbox 'MingTok-Audio: Unified Audio Tokenizer' centered near the top."}
88
+ {"deck_id": "05_MingUniAudio", "id": "05_MingUniAudio-05", "cell": "PS", "ops_per_slide": 1, "actions": ["SLIDE"], "derived_from": "U-13", "intent": "Section-based varied transitions — different transition per paper section.", "text": "Apply a fade transition to slides 4 through 12 and a wipe transition to slides 13 through 21."}
89
+ {"deck_id": "05_MingUniAudio", "id": "05_MingUniAudio-06", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-22", "intent": "Multi-slide REPLACE — change body font across the deck to Times New Roman.", "text": "Change every slide's body font to Times New Roman."}
90
+ {"deck_id": "06_SAMAudio", "id": "06_SAMAudio-01", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-01", "intent": "Multi-slide REPLACE — translate scattered Korean text to English for language uniformity.", "text": "Translate every Korean passage in the deck into English."}
91
+ {"deck_id": "06_SAMAudio", "id": "06_SAMAudio-02", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Reformat the page-number footer style across the deck (from 'NN / total' to 'Page NN').", "text": "On every slide, change the page-number footer from the 'NN / 21' format to 'Page NN'."}
92
+ {"deck_id": "06_SAMAudio", "id": "06_SAMAudio-03", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-shape EC — give each of the four prompt-modality cards a distinct color.", "text": "On slide 4, give each of the four prompt-modality cards a distinct color."}
93
+ {"deck_id": "06_SAMAudio", "id": "06_SAMAudio-04", "cell": "ES", "ops_per_slide": 1, "actions": ["DELETE"], "derived_from": "U-09", "intent": "Single-shape DELETE — remove the URL textbox on the demo slide.", "text": "On slide 2, delete the URL textbox."}
94
+ {"deck_id": "06_SAMAudio", "id": "06_SAMAudio-05", "cell": "ES", "ops_per_slide": 1, "actions": ["ADD"], "derived_from": "deck-specific", "intent": "Single-shape ADD — supply a real title to the empty title slide.", "text": "On the first slide, add a large title textbox 'SAM Audio: Multi-Modal Audio Separation' centered near the top."}
95
+ {"deck_id": "06_SAMAudio", "id": "06_SAMAudio-06", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-22", "intent": "Multi-slide REPLACE — change body font across the deck to Calibri.", "text": "Change every slide's body font to Calibri."}
96
+ {"deck_id": "07_SpeechMeeting", "id": "07_SpeechMeeting-01", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Section-colored titles — distinct color per section group, tests value-varied PS dispatch across 4 groups.", "text": "Color the slide titles by section: slides 3-6 burgundy, slides 7-9 forest green, slides 10-12 plum, slides 13-15 olive."}
97
+ {"deck_id": "07_SpeechMeeting", "id": "07_SpeechMeeting-02", "cell": "PS", "ops_per_slide": 1, "actions": ["DELETE"], "derived_from": "U-10", "intent": "Multi-slide DELETE — sweep URL reference textboxes from every slide.", "text": "On every slide, delete any small URL-link textbox."}
98
+ {"deck_id": "07_SpeechMeeting", "id": "07_SpeechMeeting-03", "cell": "PS", "ops_per_slide": 1, "actions": ["SLIDE"], "derived_from": "U-13", "intent": "Section-based varied transitions — different transition per section group.", "text": "Apply a fade transition to slides 3-6, a wipe transition to slides 7-9, a push transition to slides 10-12, and a cover transition to slides 13-15."}
99
+ {"deck_id": "07_SpeechMeeting", "id": "07_SpeechMeeting-04", "cell": "ES", "ops_per_slide": 1, "actions": ["ADD"], "derived_from": "deck-specific", "intent": "Single-shape ADD — add a meeting tag textbox to the title slide.", "text": "On the first slide, add a small textbox 'NLP Group Meeting' below the name."}
100
+ {"deck_id": "07_SpeechMeeting", "id": "07_SpeechMeeting-05", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Semantic emphasis — multi-slide REPLACE that requires the agent to identify and bold the important parts of body text on each content-bearing slide.", "text": "On every slide that has body content, bold the important parts."}
101
+ {"deck_id": "07_SpeechMeeting", "id": "07_SpeechMeeting-06", "cell": "EC", "ops_per_slide": 2, "actions": ["REPLACE", "ADD"], "derived_from": "U-03", "intent": "Single-slide multi-shape EC — restructure the index page with bold items + numbered prefixes.", "text": "On slide 2, bold each topic item and prepend a numbered prefix ('1.', '2.', etc.)."}
102
+ {"deck_id": "07_SpeechMeeting", "id": "07_SpeechMeeting-07", "cell": "PC", "ops_per_slide": 1, "actions": ["DELETE", "REPLACE"], "derived_from": "deck-specific", "intent": "Multi-slide PC combining DELETE (slide 1's page number) and REPLACE (renumber slides 2-16) — tests cross-slide page-number reassignment.", "text": "Delete the page number from slide 1, and renumber the rest so slide 2 becomes page 1, slide 3 page 2, and so on."}
103
+ {"deck_id": "07_SpeechMeeting", "id": "07_SpeechMeeting-08", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-22", "intent": "Multi-slide REPLACE — change body font across the deck to Arial.", "text": "Change every slide's body font to Arial."}
104
+ {"deck_id": "08_TTSMeeting", "id": "08_TTSMeeting-01", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Section-colored titles per experiment group.", "text": "Color the slide titles by experiment: slides 5-8 teal, slides 9-10 coral, slides 11-12 amber."}
105
+ {"deck_id": "08_TTSMeeting", "id": "08_TTSMeeting-02", "cell": "ES", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-01", "intent": "Single-shape REPLACE — translate the French sample text on slide 13 to English.", "text": "On slide 13, translate the French text to English."}
106
+ {"deck_id": "08_TTSMeeting", "id": "08_TTSMeeting-03", "cell": "PS", "ops_per_slide": 1, "actions": ["ADD"], "derived_from": "U-21", "intent": "Add date footer to every slide via pattern-mode dispatch.", "text": "Add a small textbox '2025-09-18' at the bottom-right corner of every slide."}
107
+ {"deck_id": "08_TTSMeeting", "id": "08_TTSMeeting-04", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-shape EC on the codec architecture diagram — color each component label distinctly.", "text": "On slide 7, color each component label in the codec architecture diagram with a distinct color."}
108
+ {"deck_id": "08_TTSMeeting", "id": "08_TTSMeeting-05", "cell": "PS", "ops_per_slide": 1, "actions": ["DELETE"], "derived_from": "U-10", "intent": "Multi-slide DELETE — remove empty textbox/placeholder shapes across the deck.", "text": "On every slide, delete any empty textbox or empty placeholder shape."}
109
+ {"deck_id": "08_TTSMeeting", "id": "08_TTSMeeting-06", "cell": "PS", "ops_per_slide": 1, "actions": ["SLIDE"], "derived_from": "U-13", "intent": "Section-based varied transitions per experiment group.", "text": "Apply a fade transition to slides 5-8 (Codec), a wipe transition to slides 9-10 (TTS), and a push transition to slides 11-12 (Length predictor)."}
110
+ {"deck_id": "08_TTSMeeting", "id": "08_TTSMeeting-07", "cell": "EC", "ops_per_slide": 3, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-slide EC with 3 distinct format ops on a single run — emphasize the model name with bold + italic + underline.", "text": "On slide 13, bold, italicize, and underline the model name."}
111
+ {"deck_id": "08_TTSMeeting", "id": "08_TTSMeeting-08", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-22", "intent": "Multi-slide REPLACE — change body font across the deck to Times New Roman.", "text": "Change every slide's body font to Times New Roman."}
112
+ {"deck_id": "09_ImpactReporting", "id": "09_ImpactReporting-01", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-slide REPLACE — recolor the small section-number badges (the '01', '02', …, '14' labels) on each section's slides.", "text": "On every slide that has a small section-number badge, change the badge color to gold."}
113
+ {"deck_id": "09_ImpactReporting", "id": "09_ImpactReporting-02", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Conditional multi-slide REPLACE — sweep all personal/privacy information across the deck (team name + author lists appear on slides 1 and 22) with anonymous placeholders.", "text": "On every slide that contains personal information (team name, author names, etc.), replace the personal information with anonymous placeholders ('Team Anonymous', 'Author A', 'Author B', and so on)."}
114
+ {"deck_id": "09_ImpactReporting", "id": "09_ImpactReporting-03", "cell": "PS", "ops_per_slide": 1, "actions": ["SLIDE"], "derived_from": "deck-specific", "intent": "Slide-level DELETE — remove every appendix slide. Agent detects these by title-text match (each appendix slide's first shape contains 'Appendix.').", "text": "Delete every slide whose title is 'Appendix.'."}
115
+ {"deck_id": "09_ImpactReporting", "id": "09_ImpactReporting-04", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-shape EC on the roadmap slide — color-code the three timeline markers distinctly.", "text": "On slide 20, color the 'today' marker red, the 'short term' marker orange, and the 'mid to long term' marker green."}
116
+ {"deck_id": "09_ImpactReporting", "id": "09_ImpactReporting-05", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-slide table-agent REPLACE — bold the header row of each table.", "text": "On slides 29 and 30, bold the first row of each table."}
117
+ {"deck_id": "09_ImpactReporting", "id": "09_ImpactReporting-06", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-slide EC table-agent REPLACE — apply zebra-stripe row background to the table.", "text": "On slide 30, apply alternating row background colors (zebra stripes) to the table — odd rows light gray, even rows white."}
118
+ {"deck_id": "09_ImpactReporting", "id": "09_ImpactReporting-07", "cell": "EC", "ops_per_slide": 1, "actions": ["ADD"], "derived_from": "deck-specific", "intent": "Single-slide EC table-agent ADD — add a new column to the table.", "text": "On slide 29, add a new column at the right end of the table with the header 'Status'."}
119
+ {"deck_id": "09_ImpactReporting", "id": "09_ImpactReporting-08", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-22", "intent": "Multi-slide REPLACE — change body font across the deck to Calibri.", "text": "Change every slide's body font to Calibri."}
120
+ {"deck_id": "10_MOSFET_HCI", "id": "10_MOSFET_HCI-01", "cell": "EC", "ops_per_slide": 2, "actions": ["REPLACE"], "derived_from": "U-01", "intent": "Single-slide multi-shape REPLACE — translate text and image-embedded text on slide 3 into French.", "text": "On slide 3, translate all text into French. For any images on this slide, also translate the text inside the images into French."}
121
+ {"deck_id": "10_MOSFET_HCI", "id": "10_MOSFET_HCI-02", "cell": "ES", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-shape REPLACE — replace the two author names with a named placeholder and a tilde placeholder.", "text": "On the first slide, replace the author names with 'John Doe' and '~'."}
122
+ {"deck_id": "10_MOSFET_HCI", "id": "10_MOSFET_HCI-03", "cell": "ES", "ops_per_slide": 1, "actions": ["DELETE"], "derived_from": "U-09", "intent": "Single-shape DELETE — remove the references list on the last slide.", "text": "On slide 12, delete the references list."}
123
+ {"deck_id": "10_MOSFET_HCI", "id": "10_MOSFET_HCI-04", "cell": "EC", "ops_per_slide": 2, "actions": ["REPLACE"], "derived_from": "U-08", "intent": "Single-slide multi-shape EC — text-color contrast between the ideal and deteriorated device labels on slide 5.", "text": "On slide 5, change the text color of the 'ideal initial device' textbox to blue and the text color of the 'Deteriorated device current' textbox to red."}
124
+ {"deck_id": "10_MOSFET_HCI", "id": "10_MOSFET_HCI-05", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-22", "intent": "Multi-slide REPLACE — change body font across the deck to Arial.", "text": "Change every slide's body font to Arial."}
125
+ {"deck_id": "11_FourthIndustryStartup", "id": "11_FourthIndustryStartup-01", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-01", "intent": "Multi-slide REPLACE — translate every slide's text into English.", "text": "Translate every slide's text into English."}
126
+ {"deck_id": "11_FourthIndustryStartup", "id": "11_FourthIndustryStartup-02", "cell": "EC", "ops_per_slide": 2, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-slide multi-shape REPLACE — anonymize the team identifier and the author list on the title slide.", "text": "On the first slide, replace the team identifier with 'Team Anonymous' and the author names with 'Author A, Author B, Author C'."}
127
+ {"deck_id": "11_FourthIndustryStartup", "id": "11_FourthIndustryStartup-03", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-slide multi-shape REPLACE — give each of the four category labels a distinct color.", "text": "On slide 3, color each of the four category labels with a different distinct color."}
128
+ {"deck_id": "11_FourthIndustryStartup", "id": "11_FourthIndustryStartup-04", "cell": "PC", "ops_per_slide": 2, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-slide × multi-shape REPLACE — emphasize metaverse-related vocabulary wherever it appears.", "text": "On every slide that mentions a metaverse-related term (메타버스, VR, AR, 가상현실), bold every occurrence and color them yellow."}
129
+ {"deck_id": "11_FourthIndustryStartup", "id": "11_FourthIndustryStartup-05", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-slide multi-shape REPLACE — bold the important parts of slide 14's body.", "text": "On slide 14, bold the important parts of the body content."}
130
+ {"deck_id": "11_FourthIndustryStartup", "id": "11_FourthIndustryStartup-06", "cell": "ES", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-shape image REPLACE — swap the image on slide 5 for a different one.", "text": "On slide 5, replace the image with a different image."}
131
+ {"deck_id": "12_AntonyAndCleopatra", "id": "12_AntonyAndCleopatra-01", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-slide REPLACE with semantic compression — replace the dialogue body on Scene 1 slides with a concise summary of the scene content on each slide.", "text": "On slides 3, 4, and 5, replace the body text with a 2-3 sentence summary of the scene content on that slide."}
132
+ {"deck_id": "12_AntonyAndCleopatra", "id": "12_AntonyAndCleopatra-02", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-slide REPLACE — emphasize stage directions across every dialogue slide by enlarging their font size.", "text": "On every dialogue slide, increase the font size of all stage directions (lines starting with 'Enter', 'Exit', or describing characters' actions) by 4 points."}
133
+ {"deck_id": "12_AntonyAndCleopatra", "id": "12_AntonyAndCleopatra-03", "cell": "PC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-slide × multi-shape REPLACE — color the main characters' speaker names according to a fixed mapping; leave minor characters unchanged.", "text": "On every dialogue slide, color these main-character speaker names: ANTONY red, CLEOPATRA purple, ENOBARBUS forest green. Leave other speaker names unchanged."}
134
+ {"deck_id": "12_AntonyAndCleopatra", "id": "12_AntonyAndCleopatra-04", "cell": "PS", "ops_per_slide": 1, "actions": ["SLIDE"], "derived_from": "U-16", "intent": "Scene-based slide background — distinct background per scene block.", "text": "Apply a pale yellow background to slides 2-5 (Scene 1), pale blue to slides 6-12 (Scene 2), and pale green to slides 13-15 (Scene 3)."}
135
+ {"deck_id": "12_AntonyAndCleopatra", "id": "12_AntonyAndCleopatra-05", "cell": "PS", "ops_per_slide": 1, "actions": ["ADD"], "derived_from": "U-21", "intent": "Multi-slide ADD — add a scene-navigation footer textbox.", "text": "Add a small textbox at the bottom-left of every slide showing the current scene ('Scene 1', 'Scene 2', or 'Scene 3' based on the slide's position)."}
136
+ {"deck_id": "01_Transformer", "id": "01_Transformer-01", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-01", "intent": "Translate the entire Korean lecture deck to English.", "text": "Translate every Korean passage in the deck into English."}
137
+ {"deck_id": "01_Transformer", "id": "01_Transformer-02", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Chapter-colored titles using common colors.", "text": "Color the slide titles by chapter: slides 1-19 red, slides 20-34 blue, slides 35-49 green."}
138
+ {"deck_id": "01_Transformer", "id": "01_Transformer-03", "cell": "PC", "ops_per_slide": 2, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-slide × multi-shape REPLACE — bold and color the central technical terms wherever they appear.", "text": "On every slide that mentions a Transformer-related technical term (such as 'Self-Attention', 'Multi-Head Attention', or 'Transformer'), bold every occurrence of these terms and change their text color to dark red."}
139
+ {"deck_id": "01_Transformer", "id": "01_Transformer-04", "cell": "PS", "ops_per_slide": 1, "actions": ["ADD"], "derived_from": "U-21", "intent": "Add page numbers as a fraction across the deck — the agent must determine the total slide count itself, then format each slide's number as 'current/total'.", "text": "Add a small textbox at the bottom-right corner of every slide showing the page number as a fraction (current/total)."}
140
+ {"deck_id": "01_Transformer", "id": "01_Transformer-05", "cell": "PS", "ops_per_slide": 1, "actions": ["SLIDE"], "derived_from": "U-13", "intent": "Chapter-based varied transitions across the lecture deck.", "text": "Apply a fade transition to slides 1-19, a wipe transition to slides 20-34, and a push transition to slides 35-49."}
141
+ {"deck_id": "01_Transformer", "id": "01_Transformer-06", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-slide table-agent REPLACE — bold the header row of every table in the deck.", "text": "On every slide that contains a table, bold the first row of the table."}
142
+ {"deck_id": "02_UTI", "id": "02_UTI-01", "cell": "PC", "ops_per_slide": 2, "actions": ["REPLACE"], "derived_from": "U-01", "intent": "Multi-slide REPLACE with image-translation extension on specific slides — translate text everywhere; on slides 2 and 4, also translate text embedded inside images.", "text": "Translate every slide's text into Korean. For slides 2 and 4, also translate the text inside the images to Korean."}
143
+ {"deck_id": "02_UTI", "id": "02_UTI-02", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-slide REPLACE — capitalize the 'purpose' header wherever it appears.", "text": "On every slide that has a 'purpose' header, change it to the capitalized form 'Purpose'."}
144
+ {"deck_id": "02_UTI", "id": "02_UTI-03", "cell": "PS", "ops_per_slide": 1, "actions": ["ADD"], "derived_from": "U-21", "intent": "Add page numbers as a fraction across the deck.", "text": "Add a small textbox at the bottom-right corner of every slide showing the page number as a fraction (current/total)."}
145
+ {"deck_id": "02_UTI", "id": "02_UTI-04", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-slide table-agent REPLACE — bold the header row of the table on slide 15.", "text": "On slide 15's table, bold the header row."}
146
+ {"deck_id": "02_UTI", "id": "02_UTI-05", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-slide table-agent REPLACE — uppercase any cell text that doesn't already start with uppercase.", "text": "In slide 15's table, for any cell whose text doesn't start with an uppercase letter, convert all the text in that cell to uppercase."}
147
+ {"deck_id": "02_UTI", "id": "02_UTI-06", "cell": "PC", "ops_per_slide": 2, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-slide × multi-op REPLACE — semantic emphasis on body content across the deck (bold + underline important parts).", "text": "On every slide that has body content, bold and underline the important parts."}
148
+ {"deck_id": "02_UTI", "id": "02_UTI-07", "cell": "PC", "ops_per_slide": 2, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-slide × multi-op REPLACE — color-code each Discussion subsection (1-7) and bold the title.", "text": "On every Discussion subsection slide (slides 31-42), bold the title and color it by subsection number: 1 red, 2 orange, 3 yellow, 4 green, 5 blue, 6 purple, 7 gray."}
149
+ {"deck_id": "02_UTI", "id": "02_UTI-08", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-slide table-agent REPLACE — merge horizontally adjacent cells that contain identical text (layout consolidation).", "text": "On slide 15's table, merge any horizontally adjacent cells that contain identical text."}
150
+ {"deck_id": "02_UTI", "id": "02_UTI-09", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-slide REPLACE — reduce figure sizes across a specific slide range.", "text": "On slides 5-8, reduce every figure's size by 30%."}
151
+ {"deck_id": "02_UTI", "id": "02_UTI-10", "cell": "ES", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-shape REPLACE — generate a summary of the body content and replace the original body with the summary (semantic content compression).", "text": "On slide 8, summarize the body content and replace the original body with the summary."}
152
+ {"deck_id": "02_UTI", "id": "02_UTI-11", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-22", "intent": "Multi-slide REPLACE — change body font across the deck to Times New Roman.", "text": "Change every slide's body font to Times New Roman."}
153
+ {"deck_id": "03_AbandonedSpace", "id": "03_AbandonedSpace-01", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-01", "intent": "Multi-slide REPLACE — translate the deck content into Japanese.", "text": "Translate all text in the deck into Japanese."}
154
+ {"deck_id": "03_AbandonedSpace", "id": "03_AbandonedSpace-02", "cell": "PS", "ops_per_slide": 1, "actions": ["ADD"], "derived_from": "U-21", "intent": "Add page numbers as a fraction across the deck.", "text": "Add a small textbox at the bottom-right corner of every slide showing the page number as a fraction (current/total)."}
155
+ {"deck_id": "03_AbandonedSpace", "id": "03_AbandonedSpace-03", "cell": "PC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-20", "intent": "Layout unification across the reuse-idea slides — use slide 27 as a template and align titles + photo placements + sizes to match across slides 27-33.", "text": "On slides 27 through 33, adjust the title placement, the photo placement, and their sizes so the layout of each slide matches slide 27's layout."}
156
+ {"deck_id": "03_AbandonedSpace", "id": "03_AbandonedSpace-04", "cell": "PS", "ops_per_slide": 1, "actions": ["SLIDE"], "derived_from": "U-16", "intent": "Section-based backgrounds across the deck.", "text": "Set the background of slides 1-24 (observation section) to white, and slides 25-37 (HOW TO REUSE section) to pale yellow."}
157
+ {"deck_id": "03_AbandonedSpace", "id": "03_AbandonedSpace-05", "cell": "PS", "ops_per_slide": 1, "actions": ["DELETE"], "derived_from": "U-10", "intent": "Multi-slide DELETE — sweep university campus map images from every slide.", "text": "On every slide, delete any university campus map image."}
158
+ {"deck_id": "03_AbandonedSpace", "id": "03_AbandonedSpace-06", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-22", "intent": "Multi-slide REPLACE — change body font across the deck to Calibri.", "text": "Change every slide's body font to Calibri."}
159
+ {"deck_id": "04_InnoCoreLLM", "id": "04_InnoCoreLLM-01", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-01", "intent": "Multi-slide REPLACE — translate the deck content into Korean.", "text": "Translate all text in the deck into Korean."}
160
+ {"deck_id": "04_InnoCoreLLM", "id": "04_InnoCoreLLM-02", "cell": "PS", "ops_per_slide": 1, "actions": ["ADD"], "derived_from": "deck-specific", "intent": "Multi-slide ADD — prepend a star marker to titles on a specific slide range.", "text": "On slides 11 through 20, prepend '★ ' to the title."}
161
+ {"deck_id": "04_InnoCoreLLM", "id": "04_InnoCoreLLM-03", "cell": "EC", "ops_per_slide": 2, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-slide multi-shape table-agent REPLACE — italicize every institution name and underline every school name across the tables on slide 27.", "text": "On slide 27's tables, italicize every institution name and underline every school name."}
162
+ {"deck_id": "04_InnoCoreLLM", "id": "04_InnoCoreLLM-04", "cell": "PS", "ops_per_slide": 1, "actions": ["ADD"], "derived_from": "U-21", "intent": "Add Hanja page numbers as a fraction across the deck — agent must determine total slide count and render in Chinese numerals.", "text": "Add a small textbox at the bottom-right corner of every slide showing the page number as a fraction (current/total), using Hanja (Chinese) numerals instead of Arabic digits."}
163
+ {"deck_id": "04_InnoCoreLLM", "id": "04_InnoCoreLLM-05", "cell": "EC", "ops_per_slide": 1, "actions": ["DELETE"], "derived_from": "U-10", "intent": "Single-slide multi-shape DELETE — remove every university logo image from slide 2.", "text": "On slide 2, delete all the university logos."}
164
+ {"deck_id": "04_InnoCoreLLM", "id": "04_InnoCoreLLM-06", "cell": "EC", "ops_per_slide": 4, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-slide multi-shape table-agent REPLACE — emphasize the highest-value numeric cells in the tables on slide 27 with four combined format changes.", "text": "On slide 27's tables, find the cells containing the highest numeric values and emphasize them by increasing the font size by 2, bolding, underlining, and changing the text color to a contrasting accent color."}
165
+ {"deck_id": "04_InnoCoreLLM", "id": "04_InnoCoreLLM-07", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-slide layout REPLACE — vertically align Detailed Tasks 1 through 5 on slide 10.", "text": "On slide 10, vertically align Detailed Tasks 1 through 5."}
166
+ {"deck_id": "04_InnoCoreLLM", "id": "04_InnoCoreLLM-08", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-22", "intent": "Multi-slide REPLACE — change body font across the deck to Arial.", "text": "Change every slide's body font to Arial."}
167
+ {"deck_id": "05_Immunotherapy", "id": "05_Immunotherapy-01", "cell": "PC", "ops_per_slide": 2, "actions": ["REPLACE"], "derived_from": "U-01", "intent": "Multi-slide REPLACE with image-translation extension — translate text and image-embedded text on a specific slide range.", "text": "On slides 4-6, translate all text into Chinese. For any images on these slides, also translate the text inside the images to Chinese."}
168
+ {"deck_id": "05_Immunotherapy", "id": "05_Immunotherapy-02", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-slide multi-shape REPLACE — colorize each numbered item on the Conclusion slide in a distinct rainbow color.", "text": "On the second slide, change each number's color to a different color in rainbow order."}
169
+ {"deck_id": "05_Immunotherapy", "id": "05_Immunotherapy-03", "cell": "EC", "ops_per_slide": 2, "actions": ["REPLACE"], "derived_from": "U-03", "intent": "Single-slide multi-op EC — emphasize the Conclusion slide that sits unusually early in the deck.", "text": "On slide 2 (Conclusion), bold the title and increase its font size by 8 points."}
170
+ {"deck_id": "05_Immunotherapy", "id": "05_Immunotherapy-04", "cell": "PC", "ops_per_slide": 3, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-slide × multi-op REPLACE — unify styling on the repeated Microsystem Application slides with underline + italic + orange.", "text": "On every Microsystem Application slide (12, 16, 17, 18), underline the title, italicize it, and change its color to orange."}
171
+ {"deck_id": "05_Immunotherapy", "id": "05_Immunotherapy-05", "cell": "PC", "ops_per_slide": 2, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-slide × multi-op REPLACE — unify title size with a reference slide and translate body to Spanish.", "text": "On slides 44 through 46, change the title font size to match slide 28's title font size, and translate the body content into Spanish."}
172
+ {"deck_id": "05_Immunotherapy", "id": "05_Immunotherapy-06", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-slide layout REPLACE — evenly space the bullet-point items on slide 17 (tests distribute_shapes).", "text": "On slide 17, evenly space the bullet-point items."}
173
+ {"deck_id": "05_Immunotherapy", "id": "05_Immunotherapy-07", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-22", "intent": "Multi-slide REPLACE — change body font across the deck to Times New Roman.", "text": "Change every slide's body font to Times New Roman."}
174
+ {"deck_id": "06_Algorithm", "id": "06_Algorithm-01", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-01", "intent": "Multi-slide REPLACE — translate every slide's text into English.", "text": "Translate every slide's text into English."}
175
+ {"deck_id": "06_Algorithm", "id": "06_Algorithm-02", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Conditional multi-slide REPLACE — color the chapter-number label only on slides whose title carries a numbered chapter label.", "text": "On every slide, check the title for a numbered chapter label. If the title has a numbered chapter label, color the label by chapter: 00 gray, 01 red, 02 blue, 03 green, 04 purple."}
176
+ {"deck_id": "06_Algorithm", "id": "06_Algorithm-03", "cell": "PS", "ops_per_slide": 1, "actions": ["ADD"], "derived_from": "U-21", "intent": "Add page numbers as a fraction across the deck.", "text": "Add a small textbox at the bottom-right corner of every slide showing the page number as a fraction (current/total)."}
177
+ {"deck_id": "06_Algorithm", "id": "06_Algorithm-04", "cell": "PC", "ops_per_slide": 2, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-slide × multi-op REPLACE — emphasize the sorting algorithm names wherever they appear.", "text": "On every slide that mentions a sorting algorithm name (버블 정렬, 선택 정렬), bold and underline these names."}
178
+ {"deck_id": "06_Algorithm", "id": "06_Algorithm-05", "cell": "PS", "ops_per_slide": 1, "actions": ["DELETE"], "derived_from": "U-10", "intent": "Multi-slide DELETE — sweep textboxes containing personal information across the deck.", "text": "On every slide, delete any textbox containing personal information such as department name, student ID, or name."}
179
+ {"deck_id": "07_HousingComplex", "id": "07_HousingComplex-01", "cell": "PS", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "U-01", "intent": "Multi-slide REPLACE — translate every slide's text into English.", "text": "Translate every slide's text into English."}
180
+ {"deck_id": "07_HousingComplex", "id": "07_HousingComplex-02", "cell": "PC", "ops_per_slide": 2, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Multi-slide × multi-op REPLACE — emphasize the two apartment-complex names wherever they appear.", "text": "On every slide that mentions a complex name (수영동현대아파트, 부산더샵센텀아파트), bold and underline these names."}
181
+ {"deck_id": "07_HousingComplex", "id": "07_HousingComplex-03", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-slide table-agent REPLACE — apply a different text color to each column in the table.", "text": "On slide 15's table, apply a different text color to each column."}
182
+ {"deck_id": "07_HousingComplex", "id": "07_HousingComplex-04", "cell": "PS", "ops_per_slide": 1, "actions": ["DELETE"], "derived_from": "U-10", "intent": "Multi-slide DELETE — remove the building layout (map) photos from a specific range of slides.", "text": "On slides 43-46, delete the building layout map images."}
183
+ {"deck_id": "07_HousingComplex", "id": "07_HousingComplex-05", "cell": "EC", "ops_per_slide": 1, "actions": ["REPLACE"], "derived_from": "deck-specific", "intent": "Single-slide table-agent REPLACE — substitute a character throughout the table.", "text": "On slide 48's table, replace every 'v' character with 'O'."}
taxonomy.json ADDED
@@ -0,0 +1,172 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cell_definitions": {
3
+ "ES": "Explicit-Simple: 1 slide × 1 target shape",
4
+ "EC": "Explicit-Compound: 1 slide × multiple target shapes (or multiple ops)",
5
+ "PS": "Pattern-Simple: ≥2 slides × 1 target shape per slide",
6
+ "PC": "Pattern-Compound: ≥2 slides × multiple target shapes per slide (or multiple ops per slide)"
7
+ },
8
+ "action_definitions": {
9
+ "ADD": "In-slide content insertion (new shape, prepend/append text, new paragraph, new table row)",
10
+ "DELETE": "In-slide content removal (delete shape, drop text, remove paragraph/row)",
11
+ "REPLACE": "In-slide content substitution (rewrite text, change color/font/size, swap value)",
12
+ "SLIDE": "Slide-wise operation (add/delete/duplicate a slide, set slide transition, set slide background)"
13
+ },
14
+ "templates": [
15
+ {
16
+ "id": "U-01",
17
+ "name": "translate-to-English",
18
+ "cell": "PS",
19
+ "ops_per_slide": 1,
20
+ "actions": [
21
+ "REPLACE"
22
+ ],
23
+ "intent": "Translate every slide's text content into English. Pure REPLACE at the text level applied across all slides.",
24
+ "text": "Translate all text in slide into English."
25
+ },
26
+ {
27
+ "id": "U-02",
28
+ "name": "ES-title-color-slide1",
29
+ "cell": "ES",
30
+ "ops_per_slide": 1,
31
+ "actions": [
32
+ "REPLACE"
33
+ ],
34
+ "intent": "Baseline ES sanity check — single shape (title) on a single slide. Pairs with U-04 (same op, multi-slide scope).",
35
+ "text": "Change the title color of slide 1 to blue."
36
+ },
37
+ {
38
+ "id": "U-03",
39
+ "name": "EC-multi-format-last-slide",
40
+ "cell": "EC",
41
+ "ops_per_slide": 3,
42
+ "actions": [
43
+ "REPLACE",
44
+ "ADD"
45
+ ],
46
+ "intent": "Three heterogeneous ops on multiple shapes of one slide (title + body). Tests in-slide decomposition.",
47
+ "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."
48
+ },
49
+ {
50
+ "id": "U-04",
51
+ "name": "PS-titles-color",
52
+ "cell": "PS",
53
+ "ops_per_slide": 1,
54
+ "actions": [
55
+ "REPLACE"
56
+ ],
57
+ "intent": "Apply a single style change to one shape (title) across every slide. Pairs with U-02 for ES↔PS scope comparison.",
58
+ "text": "Change the title color of every slide to blue."
59
+ },
60
+ {
61
+ "id": "U-06",
62
+ "name": "PC-translate-and-summarize",
63
+ "cell": "PC",
64
+ "ops_per_slide": 3,
65
+ "actions": [
66
+ "REPLACE",
67
+ "ADD"
68
+ ],
69
+ "intent": "Pattern-Compound mixing one REPLACE (translate title) with two ADDs (summary + takeaway). Hits multiple shapes per slide across the whole deck.",
70
+ "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."
71
+ },
72
+ {
73
+ "id": "U-07",
74
+ "name": "PC-chapter-template",
75
+ "cell": "PC",
76
+ "ops_per_slide": 3,
77
+ "actions": [
78
+ "ADD"
79
+ ],
80
+ "intent": "Pure-ADD pattern with {i} indexing across all slides. Direct test of the planner's pattern mode (explicit fallback would 3x token cost).",
81
+ "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."
82
+ },
83
+ {
84
+ "id": "U-08",
85
+ "name": "PC-translate-and-font",
86
+ "cell": "PC",
87
+ "ops_per_slide": 3,
88
+ "actions": [
89
+ "REPLACE"
90
+ ],
91
+ "intent": "Pattern-Compound with three REPLACE ops touching different attributes (text content + body font + title color). Tests cross-shape coordination.",
92
+ "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."
93
+ },
94
+ {
95
+ "id": "U-09",
96
+ "name": "ES-delete-shape-slide1",
97
+ "cell": "ES",
98
+ "ops_per_slide": 1,
99
+ "actions": [
100
+ "DELETE"
101
+ ],
102
+ "intent": "Baseline DELETE sanity — locate and remove a single shape on one slide. Pairs with U-02 (same scope, opposite action).",
103
+ "text": "On slide 1, delete the largest non-title shape."
104
+ },
105
+ {
106
+ "id": "U-10",
107
+ "name": "PS-delete-recurring",
108
+ "cell": "PS",
109
+ "ops_per_slide": 1,
110
+ "actions": [
111
+ "DELETE"
112
+ ],
113
+ "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.",
114
+ "text": "On every slide, delete any empty text shape (a shape whose text frame contains no visible characters)."
115
+ },
116
+ {
117
+ "id": "U-13",
118
+ "name": "PS-slide-transition",
119
+ "cell": "PS",
120
+ "ops_per_slide": 1,
121
+ "actions": [
122
+ "SLIDE"
123
+ ],
124
+ "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.",
125
+ "text": "Apply a fade transition to every slide."
126
+ },
127
+ {
128
+ "id": "U-16",
129
+ "name": "PS-slide-background",
130
+ "cell": "PS",
131
+ "ops_per_slide": 1,
132
+ "actions": [
133
+ "SLIDE"
134
+ ],
135
+ "intent": "Set a uniform background fill across every slide. Tests set_slide_background plus color-name resolution (no hex).",
136
+ "text": "Set the background of every slide to light gray."
137
+ },
138
+ {
139
+ "id": "U-20",
140
+ "name": "PS-mirror-each-from-template",
141
+ "cell": "PS",
142
+ "ops_per_slide": 1,
143
+ "actions": [
144
+ "REPLACE"
145
+ ],
146
+ "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.",
147
+ "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."
148
+ },
149
+ {
150
+ "id": "U-21",
151
+ "name": "PS-add-page-number",
152
+ "cell": "PS",
153
+ "ops_per_slide": 1,
154
+ "actions": [
155
+ "ADD"
156
+ ],
157
+ "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.",
158
+ "text": "Add a small textbox showing the slide number '{i}' at the bottom-right corner of every slide."
159
+ },
160
+ {
161
+ "id": "U-22",
162
+ "name": "PS-body-font-change",
163
+ "cell": "PS",
164
+ "ops_per_slide": 1,
165
+ "actions": [
166
+ "REPLACE"
167
+ ],
168
+ "intent": "Multi-slide REPLACE — change body font across the deck for visual unification.",
169
+ "text": "Change every slide's body font to Calibri."
170
+ }
171
+ ]
172
+ }