# Send Brave Images 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "brave-images",
    "name": "Brave Images",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/zats/brave-images",
    "canonicalUrl": "https://clawhub.ai/zats/brave-images",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/brave-images",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=brave-images",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/brave-images"
    },
    "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/brave-images",
    "downloadUrl": "https://openagent3.xyz/downloads/brave-images",
    "agentUrl": "https://openagent3.xyz/skills/brave-images/agent",
    "manifestUrl": "https://openagent3.xyz/skills/brave-images/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/brave-images/agent.md"
  }
}
```
## Documentation

### Brave Image Search

Search images via Brave Search API.

### Usage

curl -s "https://api.search.brave.com/res/v1/images/search?q=QUERY&count=COUNT" \\
  -H "X-Subscription-Token: $BRAVE_API_KEY"

### Parameters

ParamRequiredDescriptionqyesSearch query (URL-encoded)countnoResults count (1-100, default 20)countryno2-letter code (US, DE, IL) for region biassearch_langnoLanguage code (en, de, he)safesearchnooff, moderate, strict (default: moderate)

### Response Parsing

Key fields in each result:

results[].title — Image title
results[].properties.url — Full image URL
results[].thumbnail.src — Thumbnail URL
results[].source — Source website
results[].properties.width/height — Dimensions

### Example

Search for "sunset beach" images in Israel:

curl -s "https://api.search.brave.com/res/v1/images/search?q=sunset%20beach&count=5&country=IL" \\
  -H "X-Subscription-Token: $BRAVE_API_KEY"

Then extract from JSON response:

Thumbnail: .results[0].thumbnail.src
Full image: .results[0].properties.url

### Delivering Results

When presenting image search results:

Send images directly to the user (don't just list URLs)
Use results[].properties.url for full images or results[].thumbnail.src for thumbnails
Include image title as caption
If more results exist than shown, tell the user (e.g., "Found 20 images, showing 3 — want more?")

Example flow:

User: "find me pictures of sunsets"
→ Search with count=10
→ Send 3-5 images with captions
→ "Found 10 sunset images, showing 5. Want to see more?"

### Notes

URL-encode query strings (spaces → %20)
API key from env: $BRAVE_API_KEY
Respect rate limits per subscription tier
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: zats
- Version: 1.0.1
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/brave-images)
- [Send to Agent page](https://openagent3.xyz/skills/brave-images/agent)
- [JSON manifest](https://openagent3.xyz/skills/brave-images/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/brave-images/agent.md)
- [Download page](https://openagent3.xyz/downloads/brave-images)