Token导航 LogoToken导航TokenDH.com
图像处理敏感数据clawhub未标认证来源可访问clear审计提醒

smart-image-finder智能图像查找器

Agent Skill

用于辅助图像生成、图片编辑、视觉素材处理或图像模型工作流。它适合让 Agent 根据文本生成图片、处理背景、整理视觉提示词或调用相关图像工具。使用时需要确认输入图片、版权来源、输出格式和模型限制;涉及人物、品牌、商品或公开展示素材时,应额外核对授权、真实性和内容合规边界。

总安装

3,139

周安装

127

GitHub Stars

公开资料未说明

下载量

986
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:smart-image-finder(智能图像查找器)
来源仓库:https://github.com/justinbao19/smart-image-finder
安装命令:
openclaw skills install smart-image-finder
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install smart-image-finder

简介

AI 驱动的图像搜索与下载工具,支持新闻网站抓取、Brave 图库与 AI 生成三种方式。

  • 可为文章配图、演示文稿增色或创意项目提供视觉素材支持。
  • 优先使用公开可版权的图片,避免侵犯肖像权或商标权。
  • 批量下载时注意网络带宽与存储配额限制,防止服务中断。
  • 输出图片分辨率与格式需根据用途选择,确保清晰度与加载速度平衡。

SKILL.md

name
smart-image-finder
description
|
Triggers
find image, search photo, download picture, news image, AI generate image, article illustration
version
1.0.4
author
Justin

Smart Image Finder

A complete solution for AI agents to find high-quality images for articles, dashboards, and content creation.

No browser required — all methods work via command line in the background.

Core Methods

MethodBest ForProsCons
News Site ExtractionSpecific news eventsAuthentic, high-res, authoritativeNeed to know source
Brave Image SearchGeneral keywordsFast, free, good relevanceVariable quality
AI GenerationConcept art, custom visualsFully customizableRequires good prompts

Method 1: News Website High-Res Extraction (No Browser)

Workflow: curl + grep (Recommended)

Extract image URLs directly from HTML without opening a browser:

# Step 1: Fetch page HTML and extract image URLs
curl -sL "https://www.reuters.com/world/article-slug/" | \
  grep -oE 'https://www\.reuters\.com/resizer/v2/[^"]+\.jpg[^"]*' | head -3

# Step 2: Download with HD parameters
curl -sL -o photo.jpg "https://www.reuters.com/resizer/v2/xxx.jpg?width=3000&quality=100"

# Step 3: Verify it's actually an image
file photo.jpg  # Should show: JPEG image data

Source-Specific Extraction Patterns

# Reuters
curl -sL "$URL" | grep -oE 'https://www\.reuters\.com/resizer/v2/[^"]+\.jpg[^"]*' | head -3

# TechCrunch
curl -sL "$URL" | grep -oE 'https://techcrunch\.com/wp-content/uploads/[^"]+\.(jpg|png)' | head -3

# Bloomberg
curl -sL "$URL" | grep -oE 'https://assets\.bwbx\.io/images/[^"]+\.(jpg|webp)' | head -3

# BBC
curl -sL "$URL" | grep -oE 'https://ichef\.bbci\.co\.uk/news/[0-9]+/[^"]+\.jpg' | head -3

# France24
curl -sL "$URL" | grep -oE 'https://s\.france24\.com/media/display/[^"]+\.jpg' | head -3

# Spaceflight Now (WordPress)
curl -sL "$URL" | grep -oE 'https://spaceflightnow\.com/wp-content/uploads/[^"]+\.jpg' | head -3

# ThePaper (澎湃)
curl -sL "$URL" | grep -oE 'https://imagepphcloud\.thepaper\.cn/pph/image/[^"]+\.jpg' | head -3

Verified Sources (Direct Download Works)

Tech/AI Category

SourceCDN PatternHD ParametersNotes
TechCrunchtechcrunch.com/wp-content/uploads/?w=2048Most stable ✅
Bloombergassets.bwbx.io/images/Direct HDWebP format

Politics/International Category

SourceCDN PatternHD ParametersNotes
Reutersreuters.com/resizer/v2/?width=3000&quality=100Most stable ✅
BBCichef.bbci.co.uk/news/1024//1024/ maxLimited to 1024px
NBC Newsmedia-cldnry.s-nbcnews.com/image/Direct downloadMedium size
France24s.france24.com/media/display/w:1920Adjustable ✅

Space/Science Category

SourceCDN PatternHD ParametersNotes
Spaceflight Nowspaceflightnow.com/wp-content/uploads/Remove size suffixWordPress standard

Chinese Sources

SourceCDN PatternNotes
ThePaper (澎湃)imagepphcloud.thepaper.cn/pph/image/Direct download ✅

Sources Requiring Manual Save

SourceIssueWorkaround
GuardianURL signature validationRight-click save
The VergeComplex CDN formatUse Brave search instead
WiredPage protectionManual save
CNNURL extraction difficultUse Brave search instead
AP NewsParameter adjustment failsSave original manually

HD Parameter Quick Reference

# Reuters
?width=3000&quality=100

# TechCrunch
?w=2048

# BBC (replace number in URL)
/1024/  # Max available

# France24
w:1920

# NBC News (URL parameter)
t_fit-1500w

Method 2: Brave Image Search (No Browser)

Best for: Quick general-purpose images, automated workflows.

Basic Usage

# Set API Key (first time)
export BRAVE_API_KEY="your_api_key"

# Search images
curl -s "https://api.search.brave.com/res/v1/images/search?q=keyword&count=10" \
  -H "X-Subscription-Token: $BRAVE_API_KEY" | jq '.results[] | {title, url: .properties.url, width: .properties.width}'

# Get first image URL directly
curl -s "https://api.search.brave.com/res/v1/images/search?q=SpaceX%20Starship&count=1" \
  -H "X-Subscription-Token: $BRAVE_API_KEY" | jq -r '.results[0].properties.url'

Rate Limiting ⚠️

Brave API has rate limits. When making multiple searches:

# Add delay between requests (1-2 seconds recommended)
for query in "query1" "query2" "query3"; do
  curl -s "https://api.search.brave.com/res/v1/images/search?q=$query&count=1" \
    -H "X-Subscription-Token: $BRAVE_API_KEY" | jq -r '.results[0].properties.url'
  sleep 2  # Wait 2 seconds between requests
done

Best practices:

  • Free tier: ~1 request/second max
  • Add sleep 1 or sleep 2 between batch requests
  • If you get 429 (rate limited), wait 60 seconds before retrying

Search Tips

  1. Add year: SpaceX Starship 2025 is more precise than SpaceX Starship
  2. Add event terms: Keir Starmer Xi Jinping Beijing handshake beats UK China meeting
  3. Site restriction: site:reuters.com Trump tariff limits to specific source

One-liner: Search and Download

# Search, get first result URL, download
IMG_URL=$(curl -s "https://api.search.brave.com/res/v1/images/search?q=SpaceX%20launch%202025&count=1" \
  -H "X-Subscription-Token: $BRAVE_API_KEY" | jq -r '.results[0].properties.url')
curl -sL -o spacex.jpg "$IMG_URL"
file spacex.jpg

Verify Image Accessibility

# Check if URL returns 200
curl -sI "$IMAGE_URL" | head -1
# Should return: HTTP/2 200

# Check content type
curl -sI "$IMAGE_URL" | grep -i content-type
# Should return: content-type: image/jpeg or image/png

Method 3: AI Image Generation (No Browser)

Best for: Concept images, creative illustrations, when real photos unavailable.

Free Option: Pollinations

# Generate image (completely free, no API key needed)
curl -sL -o output.jpg "https://image.pollinations.ai/prompt/description?width=1920&height=1080&nologo=true"

# Example: Tech-style AI concept image
curl -sL -o ai-concept.jpg "https://image.pollinations.ai/prompt/futuristic%20AI%20chip%20glowing%20blue%20on%20dark%20background%20minimalist%20tech%20style?width=1920&height=1080&nologo=true"

Prompt Best Practices

# Good prompt structure
{subject} + {style} + {color tone} + {composition} + {exclusions}

# Example
"Sam Altman speaking at conference, professional photo, warm lighting, 
 shallow depth of field, high resolution, no text no watermark"

# 16:9 cover image
"... 16:9 aspect ratio, horizontal composition, clean space on right for text overlay"

# Avoid garbled text
"... no text, no letters, no words, no watermarks"

Platform Comparison

PlatformPrompt LanguageSize ParamsNotes
PollinationsEnglishwidth/heightFree unlimited
Jimeng (即梦)Chinese16:9/1:1Best for Chinese scenes
DALL-EEnglish1792x1024Highest quality

Complete Workflow Example (All CLI, No Browser)

Scenario: Find image for "UK PM visits China" article

# Option A: Extract from Reuters (no browser)
# 1. Find article URL via web search or known URL
# 2. Extract image URL from HTML
IMG_URL=$(curl -sL "https://www.reuters.com/world/uk-pm-china-visit/" | \
  grep -oE 'https://www\.reuters\.com/resizer/v2/[^"]+\.jpg' | head -1)
# 3. Download with HD params
curl -sL -o starmer-xi.jpg "${IMG_URL}?width=3000&quality=100"

# Option B: Brave search (no browser)
IMG_URL=$(curl -s "https://api.search.brave.com/res/v1/images/search?q=Keir%20Starmer%20Xi%20Jinping%202025&count=1" \
  -H "X-Subscription-Token: $BRAVE_API_KEY" | jq -r '.results[0].properties.url')
curl -sL -o starmer-xi.jpg "$IMG_URL"

# Option C: AI generate (no browser)
curl -sL -o uk-china.jpg "https://image.pollinations.ai/prompt/British%20and%20Chinese%20flags%20diplomatic%20meeting%20minimalist?width=1920&height=1080&nologo=true"

# Verify result
file starmer-xi.jpg
ls -lh starmer-xi.jpg

Quick Reference Card

Choose Method by Scenario

NeedRecommended MethodReason
Specific news eventNews site extractionAuthentic, authoritative
General concept imageBrave searchFast, free
No suitable real photoAI generationFully customizable
Article coverAI generationControllable text space
Dashboard newsBrave searchAutomation-friendly

Image Quality Checklist

  • [ ] Resolution ≥ 1200px width
  • [ ] File size > 50KB (smaller likely thumbnail)
  • [ ] file command confirms image (not HTML)
  • [ ] No watermarks
  • [ ] No copyright issues (news images for commentary/citation)

Troubleshooting

ProblemCauseSolution
curl returns HTMLHotlink protection/signatureTry different source or Brave search
Image 403URL expiredRe-fetch URL
Blurry imageDownloaded thumbnailAdjust HD parameters
Brave no resultsKeywords too specificSimplify keywords
grep returns emptyPage uses JavaScript renderingUse Brave search instead

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

81.49%
按下载量换算803

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills