From sundial-org-awesome-openclaw-skills-4
Integrates OpenAI GPT via API for chat completions (GPT-4o), DALL-E image generation, text embeddings, fine-tuning, and Assistants API. Activate for AI queries or generations.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
OpenAI GPT integration.
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.
OpenAI GPT integration.
export OPENAI_API_KEY="sk-..."
"Ask GPT: Explain quantum computing"
"Generate image of a sunset"
"Create embeddings for this text"
curl -s https://api.openai.com/v1/chat/completions \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"gpt-4o","messages":[{"role":"user","content":"Hello"}]}'