const EXAMPLE: &str = r#"-- Simple Editor script. `editor.tool(name, args)` calls the same tools the MCP server exposes;
-- `editor.tools()` lists them; `editor.log(text)` shows a toast.
local s = editor.tool("project.summary", {})
editor.log("Project: " .. tostring(s.duration or "?") .. " s, " .. tostring(#(s.tracks or {})) .. " tracks")
"#;