From pptx
PPTX inspection and creation via nong. Trigger on .pptx, PowerPoint slide text extraction, deck inspection, slide structure listing, PPTX-to-NongPandoc slice packages, or PPTX creation from JSON spec.
How this skill is triggered — by the user, by Claude, or both
Slash command
/pptx:pptxThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use `nong` as the only Nong.Toolkit.Net entrypoint for PPTX work. Supports reading, structure inspection, slicing, and basic slide creation from JSON specs.
README.mdexamples/create-from-spec.mdexamples/dissect-slide.mdexamples/read-slides.mdformats/INDEX.mdformats/academic.jsonformats/cherry-bold.jsonformats/coral-energy.jsonformats/midnight-executive.jsonformats/professional.jsonformats/teal-trust.jsonreferences/read-pptx.mdreferences/workspace-setup.mdreferences/write-pptx.mdscripts/safe-write.ps1scripts/validate-pptx.ps1Use nong as the only Nong.Toolkit.Net entrypoint for PPTX work. Supports reading, structure inspection, slicing, and basic slide creation from JSON specs.
Read ../../.claude/references/nong-cli-preflight.md before the first Nong CLI command in a session. Confirm the nong CLI is installed and the pptx command group.
Modular: nong pptx routes to the standalone Angri450.Nong.Tool.Pptx dotnet tool. First use auto-installs. Command surface unchanged.
Use only these PPTX commands:
nong pptx read <deck.pptx> --json
nong pptx slides <deck.pptx> --json
nong pptx dissect <deck.pptx> -o <slice-dir> --json
nong pptx create <spec.json> -o <out.pptx> --json
nong pptx read <deck.pptx> --json.nong pptx slides <deck.pptx> --json.nong pptx dissect <deck.pptx> -o <slice-dir> --json, then use the slice skill for block-level reads.nong pptx create <spec.json> -o <out.pptx> --json. The spec supports title slides ("kind":"title") and content slides ("kind":"content") with bullet items.status: "error" as failed and use the returned error code/message to decide whether the file path, input format, or deck content needs correction.{"slides":[
{"kind":"title","title":"Title","subtitle":"Subtitle"},
{"kind":"content","title":"Slide 2","items":["Point 1","Point 2"]}
]}
Nong.Toolkit.Net does not expose PPTX editing, theme design, chart embedding, animation, speaker-note authoring, or layout repair. Simple slide creation from JSON spec is supported via pptx create. For complex PPTX generation, expect basic title+content slides only.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub angri450/nong.toolkit.net --plugin pptx