From sundial-org-awesome-openclaw-skills-4
Chats with xAI Grok models via API. Supports text, vision analysis, model selection like grok-3/grok-3-mini, and real-time X/Twitter search with citations.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
Chat with xAI's Grok models. Supports text and vision.
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.
Chat with xAI's Grok models. Supports text and vision.
Set your API key in the skill config:
# Via clawdbot config
clawdbot config set skills.entries.xai.apiKey "xai-YOUR-KEY"
# Or environment variable
export XAI_API_KEY="xai-YOUR-KEY"
Get your API key at: https://console.x.ai
node {baseDir}/scripts/chat.js "What is the meaning of life?"
node {baseDir}/scripts/chat.js --model grok-3-mini "Quick question: 2+2?"
node {baseDir}/scripts/chat.js --image /path/to/image.jpg "What's in this image?"
node {baseDir}/scripts/search-x.js "Remotion video framework"
node {baseDir}/scripts/search-x.js --days 7 "Claude AI tips"
node {baseDir}/scripts/search-x.js --handles @remotion_dev "updates"
Uses xAI Responses API with x_search tool for real X posts with citations.
node {baseDir}/scripts/models.js
grok-3 - Most capable, best for complex tasksgrok-3-mini - Fast and efficientgrok-3-fast - Optimized for speedgrok-2-vision-1212 - Vision model for image understandingUser: "Ask Grok what it thinks about AI safety" Action: Run chat.js with the prompt
User: "Use Grok to analyze this image" (with attached image) Action: Run chat.js with --image flag
User: "What Grok models are available?" Action: Run models.js
xAI API Docs: https://docs.x.ai/api
XAI_API_KEY - Your xAI API key (required)XAI_MODEL - Default model (optional, defaults to grok-3)