Web Presentation Generator
SKILL.md
Web Presentation Generator Skill (Claude Code)
This toolset allows Claude Code to generate web presentations by copying templates from a local library.
Configuration
Library Path: {{TEMPLATES_DIR}}
Available Templates
You can find templates in the Library Path.
Instructions
To create a presentation:
- Select Template: Choose the appropriate folder from the Library Path.
- Copy Template: Recursively copy the template folder to the user's requested destination.
- Example:
cp -r {{TEMPLATES_DIR}}/template-01-minimal/* ./my-new-slides/
- Example:
- Copy Server: Copy
server.jsfrom the parent of Library Path to the destination.- Example:
cp {{TEMPLATES_DIR}}/../server.js ./my-new-slides/ - Rationale: ES Modules require a local server to function without CORS errors.
- Example:
- Verify: Check that
index.htmlandserver.jsexist in the new location.