โ† All skills
Tencent SkillHub ยท Developer Tools

Wip Grok

xAI Grok API. Search the web, search X, generate images, generate video.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

xAI Grok API. Search the web, search X, generate images, generate video.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
CHANGELOG.md, README.md, SKILL.md, cli.mjs, core.mjs, mcp-server.mjs

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 14 sections Open source page

wip-grok

xAI Grok API. Sensor (search) + Actuator (generate). All xAI functions in one tool.

Sensor: Search

Use search_web for: Current information from websites, news, documentation Real-time data (stock prices, weather, recent events) Finding information from specific domains Verifying current facts Use search_x for: What people are saying on X/Twitter about a topic Trending discussions and social sentiment Real-time reactions to events Posts from specific X handles/users

Actuator: Generate

Use generate_image for: Creating images from text descriptions Generating multiple variations of a concept Creating images with specific aspect ratios Use edit_image for: Modifying existing images with natural language Style transfer, color changes, adding/removing elements Combining up to 3 source images Use generate_video for: Creating short video clips (1-15 seconds) Animating still images (image-to-video) Text-to-video generation

Do NOT Use For

Fetching a specific X post by URL (use wip-x fetch_post instead) Posting tweets (use wip-x post_tweet) Reading bookmarks (use wip-x get_bookmarks) Historical facts that won't change Mathematical calculations

search_web(options)

const result = await search_web({ query: "latest news about AI" }); // result: { content, citations, usage, raw_response } Options: query (required), model, allowed_domains (max 5), excluded_domains (max 5), enable_image_understanding

search_x(options)

const result = await search_x({ query: "AI thoughts", allowed_x_handles: ["elonmusk"] }); Options: query (required), model, allowed_x_handles (max 10), excluded_x_handles (max 10), from_date, to_date, enable_image_understanding, enable_video_understanding

generate_image(options)

const result = await generate_image({ prompt: "a red cube", n: 1, aspect_ratio: "1:1" }); // result: { images: [{ url, revised_prompt }] } Options: prompt (required), model, n (1-10), response_format ("url"|"b64_json"), aspect_ratio Cost: $0.02 per image. URLs are temporary ... download promptly.

edit_image(options)

const result = await edit_image({ prompt: "make it blue", image: "https://..." }); Options: prompt (required), image (required, URL or file path or base64), model, n, response_format Cost: $0.022 per image (input + output).

generate_video(options)

const { request_id } = await generate_video({ prompt: "sunset timelapse", duration: 10 }); const result = await wait_for_video({ request_id }); // result: { status: "completed", url: "https://..." } Options: prompt (required), model, duration (1-15 sec), resolution ("480p"|"720p"), aspect_ratio, image (seed image URL) Cost: $0.05/sec at 480p, $0.07/sec at 720p. URLs are temporary.

poll_video(options) / wait_for_video(options)

Poll or wait for async video generation. wait_for_video is a convenience wrapper that polls until complete or timeout.

"XAI_API_KEY not found"

Set via environment or 1Password: op://Agent Secrets/X API/api key

Slow search responses

Grok reasoning models can take 30-60+ seconds. This is normal.

Temporary URLs

Image and video URLs expire. Download or process them immediately after receiving.

API Documentation

Web Search: https://docs.x.ai/developers/tools/web-search X Search: https://docs.x.ai/developers/tools/x-search Image Generation: https://docs.x.ai/docs/guides/image-generations Video Generation: https://docs.x.ai/docs/guides/video-generations

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs3 Scripts
  • SKILL.md Primary doc
  • CHANGELOG.md Docs
  • README.md Docs
  • cli.mjs Scripts
  • core.mjs Scripts
  • mcp-server.mjs Scripts