slides
Installation
SKILL.md
Slides
Use this skill when the user wants to create or modify presentation decks with the artifacts tool.
Tool Contract
- Use the
artifactstool. - Send raw JavaScript only. Do not send JSON objects, quoted code, or markdown fences.
- This tool runs plain JavaScript in Node, not TypeScript. Do not use type annotations,
type,interface, orimport type. - Do not write
import { ... } from "@oai/artifact-tool". The@oai/artifact-toolmodule surface is already preloaded onglobalThis. - Named exports such as
Presentation,PresentationFile,FileBlob,AutoLayoutAlign, andAutoLayoutDirectionare available directly. - The full module is also available as
artifactTool,artifacts, andcodexArtifacts. - You may still import Node built-ins such as
node:fs/promiseswhen you need to write preview bytes to disk. - Save outputs under a user-visible path such as
artifacts/quarterly-update.pptxorartifacts/slide-1.png.