From sundial-org-awesome-openclaw-skills-4
Generates AI-powered presentations with 40+ themes, custom designs, and speaker notes from natural language prompts. Requires Prezentit API key for direct chat integration.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
---
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Generate stunning presentations instantly with AI. Describe your topic and get a complete slide deck with custom designs.
/config set PREZENTIT_API_KEY pk_your_key_here| Action | Credits |
|---|---|
| Outline (per slide) | 5 credits |
| Design (per slide) | 10 credits |
| Total per slide | 15 credits |
| With your outline | 10 credits (design only) |
New accounts: 100 free credits. Purchase more at prezentit.net/buy-credits
Base URL: https://prezentit.net/api/v1
Auth: Authorization: Bearer pk_your_api_key_here
| Endpoint | Description |
|---|---|
GET /me/credits | Check your credit balance |
GET /themes | List available themes |
GET /themes?search=NAME | Find theme by name |
POST /presentations/generate | Generate presentation |
GET /docs/outline-format | Get outline validation rules |
POST /presentations/generate
{
"topic": "Your topic (required)",
"details": "Additional context (optional)",
"slideCount": 5, // 3-50, default: 5
"theme": "minimalist", // Theme ID from /themes
"outline": { ... }, // Optional: provide your own outline
"stream": false // IMPORTANT: Set to false for AI agents
}
CRITICAL for AI Agents: Always set "stream": false to receive a single JSON response instead of Server-Sent Events (SSE). This prevents polling issues and rate limits.
Response with stream: false:
{
"success": true,
"data": {
"presentationId": "uuid",
"title": "Your Presentation Title",
"viewUrl": "https://prezentit.net/view/abc123...",
"slideCount": 5,
"creditsUsed": 75,
"remainingCredits": 25
}
}
Theme Selection: Either provide theme (from /themes) OR customDesignPrompt for custom styles.
You can provide your own outline to skip AI outline generation. This is useful when:
Get the exact format requirements:
GET /api/v1/docs/outline-format
This endpoint returns:
Important: Presentations with external outlines cannot be shared to the community feed (but can have public view links).
{
"topic": "Machine Learning Basics",
"theme": "minimalist",
"stream": false,
"outline": {
"slides": [
{
"title": "Introduction to Machine Learning",
"mainIdea": "Machine learning enables computers to learn from data...",
"talkingPoints": [
"Definition and core principles",
"How ML differs from traditional programming",
"Key applications in everyday life"
],
"visualGuide": "Split-screen comparison of traditional programming vs ML..."
}
// ... more slides
]
}
}
When outline validation fails, you'll receive detailed errors:
{
"error": "Invalid outline format",
"code": "INVALID_OUTLINE",
"validationErrors": [
{
"slide": 1,
"field": "title",
"error": "Title must be between 3-100 characters",
"value": "ML",
"fix": "Expand the title to at least 3 characters"
}
],
"constraints": { ... },
"documentation": "https://prezentit.net/api/v1/docs/outline-format"
}
| Code | Meaning |
|---|---|
| 401 | Invalid/missing API key |
| 402 | Insufficient credits |
| 429 | Rate limited (retry after 60s) |
stream: false - This is critical! Without it, you'll get SSE streaming which causes polling issues and rate limitsstream: false, the API returns a single JSON response when generation is completeGET /api/v1/docs/outline-format for live documentation