/sn-search-image
USE FOR Google-backed image discovery via Serper.dev. Returns image URLs, page URLs, titles, and source domains.
$ npx -y skills add OpenSenseNova/SenseNova-Skills --skill sn-search-image --agent claude-codeHow 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.mdname: 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 10Image URLs only:
python3 {baseDir}/scripts/serper_image_search.py "QUERY" --num 10 --image-urls-only --limit 5Page URLs only:
python3 {baseDir}/scripts/serper_image_search.py "QUERY" --num 10 --page-urls-only --limit 5Raw JSON:
python3 {baseDir}/scripts/serper_image_search.py "QUERY" --num 10 --jsonSave raw JSON to a file for later inspection:
python3 {baseDir}/scripts/serper_image_search.py "QUERY" --num 10 --save-json /tmp/serper-images.jsonImportant
- 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.
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.
Repo: OpenSenseNova/SenseNova-Skills
Other skills on sensenova-skills.
- /sn-da-excel-workflow
Excel 数据分析多步编排器。覆盖:(1) 读取多 Sheet Excel 文件并统计行数,(2) 大文件检测(≥10k 行自动 Parquet 优化),(3) 数据清洗(缺失值、文本标准化、无效字符),(4) 条件筛选与分类提取,(5) 跨 Sheet 统计聚合,(6) 导出 Excel/CSV 并提供下载链接。覆盖从数据读取到报告生成全流程,按步骤编排 capability 子 skill。**遇到以下任一情况就主动使用本 skill,不要自行写几行 pandas 就回答**:①用户出现触发词:Excel 分析 / 表格分析 / 数据分析 /
Open skill - /category-coloring
当Excel文件总行数超过1万行时,通过转换为Parquet格式提升读取性能,提取目标指标并计算最大值,最后将结果输出为Excel并对特定行进行高亮标注。
Open skill - /duplicate-value-coloring
对比Excel多表中的特定系数并对异常值进行颜色标记。
Open skill - /outlier-coloring
识别 Excel 中的超限数值与错误单元格并进行高亮标注。
Open skill - /threshold-cell-coloring
根据Excel总行数自动切换Parquet加速读取,计算特定维度的时间序列平均值,并使用openpyxl输出带有条件格式(如低于均值标绿)和自定义样式的分析报告。
Open skill - /top-value-coloring
根据数据规模动态选择处理策略,对多表数据进行合并、统计筛选,并利用 openpyxl 实现关键指标的自动化样式高亮与格式化导出。
Open skill

