What problem does it solve? This Skill lets your app use real xAI (Grok) API capabilities through the injected XAI_API_KEY environment variable, so you can add chat, image/video generation, and voice features without mocking responses or integrating another provider. ## Core Features & Use Cases - Chat / LLM: Call the OpenAI-compatible chat completions endpoint with the latest grok-4.5 model from server functions using plain fetch. - Imagine (Image & Video): Generate and edit images and generate short video clips at runtime inside the running app. - Voice (TTS): Convert text to spoken audio with expressive voices, plus transcription support. - Use Case: Add an AI assistant to your app by creating a server function that reads process.env.XAI_API_KEY, posts to https://api.x.ai/v1/chat/completions, and returns the response text to the client. ## Quick Start Add a server function that calls the xAI chat completions endpoint with the injected XAI_API_KEY and wire it to a button in the app.