{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/brave-images",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=brave-images",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/brave-images",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Brave Image Search",
        "body": "Search images via Brave Search API."
      },
      {
        "title": "Usage",
        "body": "curl -s \"https://api.search.brave.com/res/v1/images/search?q=QUERY&count=COUNT\" \\\n  -H \"X-Subscription-Token: $BRAVE_API_KEY\""
      },
      {
        "title": "Parameters",
        "body": "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)"
      },
      {
        "title": "Response Parsing",
        "body": "Key fields in each result:\n\nresults[].title — Image title\nresults[].properties.url — Full image URL\nresults[].thumbnail.src — Thumbnail URL\nresults[].source — Source website\nresults[].properties.width/height — Dimensions"
      },
      {
        "title": "Example",
        "body": "Search for \"sunset beach\" images in Israel:\n\ncurl -s \"https://api.search.brave.com/res/v1/images/search?q=sunset%20beach&count=5&country=IL\" \\\n  -H \"X-Subscription-Token: $BRAVE_API_KEY\"\n\nThen extract from JSON response:\n\nThumbnail: .results[0].thumbnail.src\nFull image: .results[0].properties.url"
      },
      {
        "title": "Delivering Results",
        "body": "When presenting image search results:\n\nSend images directly to the user (don't just list URLs)\nUse results[].properties.url for full images or results[].thumbnail.src for thumbnails\nInclude image title as caption\nIf more results exist than shown, tell the user (e.g., \"Found 20 images, showing 3 — want more?\")\n\nExample flow:\n\nUser: \"find me pictures of sunsets\"\n→ Search with count=10\n→ Send 3-5 images with captions\n→ \"Found 10 sunset images, showing 5. Want to see more?\""
      },
      {
        "title": "Notes",
        "body": "URL-encode query strings (spaces → %20)\nAPI key from env: $BRAVE_API_KEY\nRespect rate limits per subscription tier"
      }
    ],
    "body": "Brave Image Search\n\nSearch images via Brave Search API.\n\nUsage\ncurl -s \"https://api.search.brave.com/res/v1/images/search?q=QUERY&count=COUNT\" \\\n  -H \"X-Subscription-Token: $BRAVE_API_KEY\"\n\nParameters\nParam\tRequired\tDescription\nq\tyes\tSearch query (URL-encoded)\ncount\tno\tResults count (1-100, default 20)\ncountry\tno\t2-letter code (US, DE, IL) for region bias\nsearch_lang\tno\tLanguage code (en, de, he)\nsafesearch\tno\toff, moderate, strict (default: moderate)\nResponse Parsing\n\nKey fields in each result:\n\nresults[].title — Image title\nresults[].properties.url — Full image URL\nresults[].thumbnail.src — Thumbnail URL\nresults[].source — Source website\nresults[].properties.width/height — Dimensions\nExample\n\nSearch for \"sunset beach\" images in Israel:\n\ncurl -s \"https://api.search.brave.com/res/v1/images/search?q=sunset%20beach&count=5&country=IL\" \\\n  -H \"X-Subscription-Token: $BRAVE_API_KEY\"\n\n\nThen extract from JSON response:\n\nThumbnail: .results[0].thumbnail.src\nFull image: .results[0].properties.url\nDelivering Results\n\nWhen presenting image search results:\n\nSend images directly to the user (don't just list URLs)\nUse results[].properties.url for full images or results[].thumbnail.src for thumbnails\nInclude image title as caption\nIf more results exist than shown, tell the user (e.g., \"Found 20 images, showing 3 — want more?\")\n\nExample flow:\n\nUser: \"find me pictures of sunsets\"\n→ Search with count=10\n→ Send 3-5 images with captions\n→ \"Found 10 sunset images, showing 5. Want to see more?\"\n\nNotes\nURL-encode query strings (spaces → %20)\nAPI key from env: $BRAVE_API_KEY\nRespect rate limits per subscription tier"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/zats/brave-images",
    "publisherUrl": "https://clawhub.ai/zats/brave-images",
    "owner": "zats",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}