main
md 69 lines 2.11 KB
Rendered Raw
1 ---
2 name: impress-presentations
3 description: Use when creating, opening, or editing LibreOffice Impress ODP presentations, or PPTX decks only when PowerPoint compatibility is explicitly required.
4 version: "1.1.0"
5 author: "Agent Zero Core Team"
6 tags: ["presentation", "odp", "opendocument", "pptx", "powerpoint", "slides", "deck", "impress"]
7 triggers:
8 - "Impress"
9 - "ODP"
10 - "odp"
11 - "OpenDocument Presentation"
12 - "PowerPoint"
13 - "PPTX"
14 - "pptx"
15 - "presentation"
16 - "slide deck"
17 - "slides"
18 - "deck"
19 - "Impress"
20 allowed_tools:
21 - office_artifact
22 ---
23
24 # Impress Presentations
25
26 Use ODP when the user asks for a presentation, slides, a deck, or an Impress artifact. Use PPTX only when the user asks for PowerPoint/PPTX compatibility or provides an existing `.pptx`.
27
28 The document UI and Desktop are user-owned. Creating or editing an ODP or PPTX must save the deck, but must not open a document modal or Desktop surface automatically. Use Desktop/Impress only for explicit GUI requests, visual layout polish, or final visual confirmation. Do not write faux UI action labels such as "Open document" or "Download file", and do not add a note saying the canvas was not opened automatically unless the user explicitly asks about UI behavior.
29
30 ## Workflow
31
32 Create:
33
34 ```json
35 {
36 "tool_name": "office_artifact",
37 "tool_args": {
38 "action": "create",
39 "kind": "presentation",
40 "title": "Roadmap",
41 "format": "odp",
42 "content": "Title Slide\n\n---\n\nNext Steps"
43 }
44 }
45 ```
46
47 Edit slides:
48
49 ```json
50 {
51 "tool_name": "office_artifact",
52 "tool_args": {
53 "action": "edit",
54 "file_id": "abc123",
55 "operation": "set_slides",
56 "slides": [
57 {"title": "Now", "bullets": ["Stabilize"]},
58 {"title": "Next", "bullets": ["Polish"]}
59 ]
60 }
61 }
62 ```
63
64 Practical rules:
65
66 - Use `slides` arrays for structured decks and `---` separators for simple text-to-slide creation.
67 - Keep slide text concise and scannable.
68 - Treat PPTX as a compatibility export/request, not the default presentation format.
69 - Do not open Impress/Desktop automatically. The user can choose Open in Desktop when they want to inspect or polish the deck visually.