Skip to content
Productivity
Skill

/sn-search-image

USE FOR Google-backed image discovery via Serper.dev. Returns image URLs, page URLs, titles, and source domains.

From plugin
sensenova-skills
5.6k80 skills
Install
$ npx -y skills add OpenSenseNova/SenseNova-Skills --skill sn-search-image --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/sn-search-image

Context preview

The summary Claude sees to decide when to auto-load this skill.

USE FOR Google-backed image discovery via Serper.dev. Returns image URLs, page URLs, titles, and source domains.

SKILL.md

sn-search-image.SKILL.md
name: sn-search-image
description: USE FOR Google-backed image discovery via Serper.dev. Returns image URLs, page URLs, titles, and source domains.
metadata: {"openclaw":{"requires":{"bins":["python3"],"env":["SERPER_API_KEY"]},"primaryEnv":"SERPER_API_KEY"}}

Serper Image Search

Use this skill to search for candidate images via Serper.dev.

Commands

Standard image search:

python3 {baseDir}/scripts/serper_image_search.py "QUERY" --num 10

Image URLs only:

python3 {baseDir}/scripts/serper_image_search.py "QUERY" --num 10 --image-urls-only --limit 5

Page URLs only:

python3 {baseDir}/scripts/serper_image_search.py "QUERY" --num 10 --page-urls-only --limit 5

Raw JSON:

python3 {baseDir}/scripts/serper_image_search.py "QUERY" --num 10 --json

Save raw JSON to a file for later inspection:

python3 {baseDir}/scripts/serper_image_search.py "QUERY" --num 10 --save-json /tmp/serper-images.json

Important

  • This skill only performs image search and returns candidate result metadata.
  • Run the command directly as shown above.
  • Do not wrap it with `cd`, shell pipes, `python -c`, here-docs, or output redirection tricks.
  • Use `--gl` and `--hl` when you need country or language bias.
Ships withsensenova-skills

The SenseNova model family plugs directly into agent runtimes such as OpenClaw and hermes-agent, with the skills in this repository extending the models with concrete, end-to-end office capabilities.

Get the whole plugin
Stats
5,634
Stars
392
Forks
Active
Maintenance
JavaScript
Language
MIT
License
3d ago
Last commit
5mo ago
Created

Repo: OpenSenseNova/SenseNova-Skills

Other skills on sensenova-skills.

sn-da-excel-workflow
Skill

sn-da-excel-workflow

Excel 数据分析多步编排器。覆盖:(1) 读取多 Sheet Excel 文件并统计行数,(2) 大文件检测(≥10k 行自动 Parquet 优化),(3) 数据清洗(缺失值、文本标准化、无效字符),(4) 条件筛选与分类提取,(5) 跨 Sheet 统计聚合,(6) 导出 Excel/CSV…