Agent Skill Setup & Usage Guide
Overview
Agent Skills enable your AI assistant (Claude Code, Cursor, etc.) to perform real tasks such as:
- Creating and managing projects
- Generating slide decks with AI
- Editing slide images
- Applying themes
- Exporting presentations
- Managing files and assets
You don’t need to configure workflows manually — just install the skills and describe what you want.
Prerequisites
Make sure you have:
- Node.js (version 18 or higher)
- An AI agent tool (Cursor, Claude Code, or compatible)
Install Node.js
Mac
brew install node
Windows
- Download and install from: https://nodejs.org
Linux (Ubuntu)
sudo apt update
sudo apt install nodejs npm -y
Installation
Install skills using npx skills:
npx skills add compilet-dev/agent-skill-layerproof
Optional
Install specific skills:
npx skills add compilet-dev/agent-skill-layerproof --skill slide-decks
List available skills:
npx skills add compilet-dev/agent-skill-layerproof --list
Install globally (recommended):
npx skills add compilet-dev/agent-skill-layerproof -g
Available Skills
| Skill | Description |
|---|---|
| workspaces | Manage workspaces |
| projects | Manage projects |
| public-files | Upload reference files |
| project-files | Manage project files |
| slide-decks | Generate slide decks |
| slides | Edit images and extract content |
| themes | Apply or generate themes |
| exports | Export presentations |
| jobs | Handle background tasks |
| social-campaign | Generate social campaign posts |
Usage
Before using Agent Skills, you must configure your environment:
You can set these for the current shell session or save them for future sessions.
Temporary, current shell only:
export LAYERPROOF_BASE_URL="https://api.prod.layerproof.app"
export LAYERPROOF_API_KEY="your-api-key-here"
Persistent, save for future terminal sessions:
macOS / Linux (zsh):
echo 'export LAYERPROOF_BASE_URL=https://api.prod.layerproof.app' >> ~/.zshrc
echo 'export LAYERPROOF_API_KEY=your-api-key-here' >> ~/.zshrc
source ~/.zshrc
macOS / Linux (bash):
echo 'export LAYERPROOF_BASE_URL=https://api.prod.layerproof.app' >> ~/.bashrc
echo 'export LAYERPROOF_API_KEY=your-api-key-here' >> ~/.bashrc
source ~/.bashrc
Windows PowerShell:
[Environment]::SetEnvironmentVariable("LAYERPROOF_BASE_URL", "https://api.prod.layerproof.app", "User")
[Environment]::SetEnvironmentVariable("LAYERPROOF_API_KEY", "your-api-key-here", "User")
Close and reopen the terminal after saving on Windows.
Example Prompts
Create a slide deck about AI Marketing with 10 slides
Generate slides using my uploaded document
Apply a modern theme to this deck
Remove background from slide image
Export this project as PPTX
How It Works
- You send a prompt
- The agent selects the correct skill
- The workflow runs automatically
- Results are returned
Notes
- Some actions may take time (generation, export)
- The agent will automatically wait and return results
- No manual steps required
Summary
Describe your idea → Agent executes → Get results
Simple, fast, and fully automated.