From sundial-org-awesome-openclaw-skills-4
Searches for images using Brave Search API. Useful when needing pictures, photos, or visual content on any topic. Requires BRAVE_API_KEY environment variable.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
Search images via Brave Search API.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Search images via Brave Search API.
curl -s "https://api.search.brave.com/res/v1/images/search?q=QUERY&count=COUNT" \
-H "X-Subscription-Token: $BRAVE_API_KEY"
| Param | Required | Description |
|---|---|---|
q | yes | Search query (URL-encoded) |
count | no | Results count (1-100, default 20) |
country | no | 2-letter code (US, DE, IL) for region bias |
search_lang | no | Language code (en, de, he) |
safesearch | no | off, moderate, strict (default: moderate) |
Key fields in each result:
results[].title — Image titleresults[].properties.url — Full image URLresults[].thumbnail.src — Thumbnail URLresults[].source — Source websiteresults[].properties.width/height — DimensionsSearch 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:
.results[0].thumbnail.src.results[0].properties.urlWhen presenting image search results:
results[].properties.url for full images or results[].thumbnail.src for thumbnailsExample 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?"
%20)$BRAVE_API_KEY