# Send Wip Grok to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "wip-grok",
    "name": "Wip Grok",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/parkertoddbrooks/wip-grok",
    "canonicalUrl": "https://clawhub.ai/parkertoddbrooks/wip-grok",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/wip-grok",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wip-grok",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "CHANGELOG.md",
      "README.md",
      "SKILL.md",
      "cli.mjs",
      "core.mjs",
      "mcp-server.mjs"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "wip-grok",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-11T02:48:17.214Z",
      "expiresAt": "2026-05-18T02:48:17.214Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wip-grok",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wip-grok",
        "contentDisposition": "attachment; filename=\"wip-grok-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "wip-grok"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/wip-grok"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/wip-grok",
    "downloadUrl": "https://openagent3.xyz/downloads/wip-grok",
    "agentUrl": "https://openagent3.xyz/skills/wip-grok/agent",
    "manifestUrl": "https://openagent3.xyz/skills/wip-grok/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/wip-grok/agent.md"
  }
}
```
## Documentation

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: parkertoddbrooks
- Version: 1.0.2
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-11T02:48:17.214Z
- Expires at: 2026-05-18T02:48:17.214Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/wip-grok)
- [Send to Agent page](https://openagent3.xyz/skills/wip-grok/agent)
- [JSON manifest](https://openagent3.xyz/skills/wip-grok/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/wip-grok/agent.md)
- [Download page](https://openagent3.xyz/downloads/wip-grok)