一键导入
xai-grok
Use only for general codex-xai-oauth/xAI Grok plugin overview, setup orientation, or multi-tool requests when no dedicated xai_* skill is a better fit.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use only for general codex-xai-oauth/xAI Grok plugin overview, setup orientation, or multi-tool requests when no dedicated xai_* skill is a better fit.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when the user asks how to log in, authenticate, configure OAuth, set up XAI_API_KEY, or fix missing xAI/Grok credentials for codex-xai-oauth.
Use when the user asks to generate, draft, answer, rewrite, summarize, or reason with xAI/Grok text generation through xai_generate_text.
Use when the user asks to generate, create, make, or save images with xAI, Grok Imagine, xai_image_generate, or codex-xai-oauth image artifacts.
Use when the user asks to check xAI, Grok, codex-xai-oauth, OAuth, API-key, or credential status without exposing secrets.
Use when the user asks to generate speech, text-to-speech, audio narration, voice output, or TTS with xAI/Grok through xai_tts.
Use when the user asks to generate video, Grok Imagine video, text-to-video, image-to-video, or xAI video through xai_video_generate.
| name | xai-grok |
| description | Use only for general codex-xai-oauth/xAI Grok plugin overview, setup orientation, or multi-tool requests when no dedicated xai_* skill is a better fit. |
Use this umbrella skill only for general plugin overview, setup orientation, or multi-tool xAI/Grok requests. For a specific tool request, prefer the dedicated skill:
xai_statusxai_login_instructionsxai_generate_textxai_web_searchxai_x_searchxai_image_generatexai_ttsxai_video_generatexai_status: check whether OAuth or XAI_API_KEY credentials are available. Never expose token material.xai_login_instructions: show local setup commands and the auth-file path.xai_generate_text: generate text with Grok through xAI Responses.xai_web_search: answer with xAI server-side web search.xai_x_search: answer with xAI server-side X search. Do not pass both allowed and excluded handles.xai_image_generate: generate images with xAI /images/generations. Pass artifact_dir when the user wants local files; URL and b64_json images are saved there and returned in artifacts.xai_tts: generate speech audio.xai_video_generate: generate video.~/.grok/auth.json. It is a shared auth file, not a requirement to use a specific Grok CLI build.CODEX_XAI_OAUTH_AUTH_FILE overrides the auth-file path with a package-format OAuth file.CODEX_XAI_OAUTH_GROK_AUTH_FILE overrides the shared xAI OIDC auth-file path.~/.config/codex-xai-oauth/auth.json are read only when the shared store is absent.XAI_API_KEY is the fallback credential.XAI_BASE_URL can override the API base URL.For OAuth device flow:
codex-xai-oauth login --device
For API-key fallback:
export XAI_API_KEY=xai-...
To check status:
codex-xai-oauth status
Use xai_image_generate when the user asks to generate an image, Grok Imagine image, or xAI image. Defaults are model: grok-imagine-image, response_format: url, and n: 1.
Preferred MCP call:
{
"prompt": "tiny minimalist blue dot icon on white background",
"resolution": "2k",
"artifact_dir": ".codex-xai-artifacts"
}
Direct CLI equivalent:
codex-xai-oauth image \
--prompt "tiny minimalist blue dot icon on white background" \
--resolution 2k \
--artifact-dir .codex-xai-artifacts
For base64 image payloads saved locally:
codex-xai-oauth image \
--prompt "a cinematic robot reading a book" \
--response-format b64_json \
--artifact-dir .codex-xai-artifacts
Supported image options:
prompt: required image prompt.n: number of images.resolution: 1k or 2k.response_format: url or b64_json.size: provider-specific size string.artifact_dir: local directory for saved image artifacts.When artifact_dir is provided, return both the upstream JSON and the artifacts metadata. Each saved artifact includes a local path, mime_type, source, and status. If a remote URL cannot be downloaded, preserve the upstream url with status: remote instead of hiding it.