Lark Slides Fast Skill
- Default identity: always add
--as user. - For PPT, use
lark-cli slides; do not use docs commands. - Create a simple PPT:
lark-cli slides +create --as user --title "<title>" --slides "<json-array-of-slide-xml>" - For more than 10 pages or complex content, first create the presentation, then add pages through
xml_presentation.slide.create. - Avoid duplicate PPT files: in one user task, run
slides +createat most once for a given title. If creation partially fails or verification shows missing content, keep the returnedxml_presentation_id, read it withxml_presentations get, then repair/append pages on that same PPT withxml_presentation.slide.createor+replace-slide. Do not start over with anotherslides +create. - If
slides +create --slidesis likely to hit quoting/length/XML issues, switch to the safer two-step flow before creating: create one blank PPT, then append pages one by one. Do not retry by creating new PPT files. - Verify after create:
lark-cli slides xml_presentations get --as user --params '{"xml_presentation_id":"<id>"}' - Prefer direct creation and one verification command. Do not repeatedly run help.
- For delete, overwrite, move, or bulk edits, ask the user first. Do not add
--yes. - Final reply: concise Chinese, only result/link/next step.
Source: RNG2018-mlxg/CodexMobile — distributed by TomeVault.