From sundial-org-awesome-openclaw-skills-4
Integrates OpenAI GPT for chat completions, image generation, embeddings, and fine-tuning via the OpenAI API. Useful when working with GPT-4, DALL-E, or the Assistants API.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sundial-org-awesome-openclaw-skills-4:gptThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
OpenAI GPT integration.
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"}]}'
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4Automate OpenAI API operations -- generate responses with multimodal and structured output support, create embeddings, generate images, and list models via the Composio MCP integration.
Provides Node.js SDK examples for OpenAI APIs: Chat Completions (GPT-5.2, GPT-4o), Embeddings, Images (gpt-image-1.5), Audio (Whisper transcription, TTS), streaming, function calling, and error handling. Useful for API integrations.
Integrates with Anthropic Claude API to chat with Claude models (Opus, Sonnet, Haiku) with long context, vision, and tool use.