Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add iflow-ai/iflow-skills --skill iflow-searchgit clone --depth 1 https://github.com/iflow-ai/iflow-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/iflow-ai/iflow-skills/iflow-search)<a href="https://agentmods.dev/skills/iflow-ai/iflow-skills/iflow-search"><img src="https://agentmods.dev/badge/skills/iflow-ai/iflow-skills/iflow-search/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/iflow-ai/iflow-skills/iflow-search"><img src="https://agentmods.dev/badge/skills/iflow-ai/iflow-skills/iflow-search.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00039 | $0.01121 |
| Opus 5 | $0.00019 | $0.00561 |
| Sonnet 5 | $0.00008 | $0.00224 |
| Haiku 4.5 | $0.00004 | $0.00112 |
Grade A, and why
iflow-search-skill scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 13d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 148 lines — stays where its author put it; the contents beside it link to each section on GitHub.
心流搜索 Skill
概述
心流搜索 Skill 是一个联网搜索技能,基于心流搜索 API,提供三大核心能力:
- 网页搜索:根据关键词搜索网络,返回相关网页的标题、摘要和链接
- 图片搜索:根据关键词搜索图片,返回图片 URL 和来源
- 网页内容抓取:将指定 URL 的网页转换为大模型友好的文本内容
使用场景
- 用户需要搜索最新的网络信息
- 用户需要查找特定主题的图片
- 用户提供了一个 URL,需要获取网页内容进行分析
- 用户需要综合多个网页的信息来回答问题
能力说明
1. 网页搜索 (webSearch)
搜索网络并返回结构化的搜索结果。
调用脚本:scripts/web_search.sh
参数:
keywords(必填):搜索关键词num(可选,默认 10):返回结果数量
返回结果:每条结果包含 title(标题)、snippet(摘要)、link(链接)
使用示例:
# 搜索 Python 异步编程教程
bash scripts/web_search.sh "Python 异步编程教程" 10
2. 图片搜索 (imageSearch)
搜索图片并返回图片链接。
调用脚本:scripts/image_search.sh
参数:
keywords(必填):搜索关键词num(可选,默认 10):返回结果数量
返回结果:每条结果包含 url(图片 URL)、refUrl(来源页面)、title(图片标题,可能为空)
使用示例:
# 搜索风景图片
bash scripts/image_search.sh "风景壁纸" 5
3. 网页内容抓取 (webFetch)
将 URL 转换为大模型友好的文本内容。
调用脚本:scripts/web_fetch.sh
参数:
url(必填):目标网页 URL
返回结果:包含 title(标题)、content(正文内容)、url(实际 URL)、fromCache(是否命中缓存)
使用示例:
# 抓取网页内容
bash scripts/web_fetch.sh "https://example.com/article"
前置要求
使用前需设置 IFLOW_API_KEY 环境变量。在调用任何搜索能力之前,必须先检查该环境变量是否已设置:
echo "$IFLOW_API_KEY"
如果为空,提示用户:
搜索功能需要设置 IFLOW_API_KEY 环境变量才能使用。请按以下步骤操作:
- 访问 https://platform.iflow.cn 注册并获取 API Key
- 将 API Key 写入 shell 配置文件以持久生效:
echo 'export IFLOW_API_KEY=your_api_key' >> ~/.zshrc- 在当前终端执行
source ~/.zshrc使其立即生效(否则仅在新打开的终端窗口中才会生效)
设置完成后再继续执行搜索操作。
调用示例
搜索最新新闻
用户:「帮我搜一下最近的 AI 新闻」
bash scripts/web_search.sh "AI 人工智能 最新新闻" 10
搜索图片
用户:「帮我找一些猫咪图片」
bash scripts/image_search.sh "猫咪 可爱" 5
抓取网页内容
用户:「帮我看看这个网页的内容:https://example.com」
bash scripts/web_fetch.sh "https://example.com"
先搜索再抓取
用户:「帮我搜一下 Python 异步编程,找一篇好的教程详细看看」
- 先用网页搜索找到相关结果:
bash scripts/web_search.sh "Python 异步编程 教程" 10
- 从搜索结果中挑选合适的链接,用网页抓取获取详细内容:
bash scripts/web_fetch.sh "从搜索结果中获取的链接"
最佳实践
- 先搜索,再抓取:先用
webSearch找到相关网页,再用webFetch获取详细内容 - 精炼关键词:使用具体、明确的关键词以获得更精准的搜索结果
- 控制结果数量:根据需要设置
num参数,避免请求过多无用结果
What ships with it
3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 13d ago First seen · 148 lines · 39 tokens per session scan A 82a4477a714b
iflow-search-skill is a skill published in the GitHub repository iflow-ai/iflow-skills (5 stars, last pushed 3mo ago), licensed MIT. It adds 39 tokens to every session and 1,121 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
debug-optimize-lcp
Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…
opencli-sitemap-author
Use when creating or maintaining OpenCLI site sitemaps: agent-facing navigation, page-state, action, workflow, API-reference, pitfall, and fallback knowledge for a website. Use after browser exploration discovers durable site context, when a sitemap is stale, or when promoting local site knowledge into the repo.
interactive-login
How to complete browser/interactive logins (aws / gh / glab / gcloud). The platform backgrounds the login poller so it survives the human's browser round-trip — and when that does NOT work.
pinchtab-mcp
Use this skill when a task requires browser automation through PinchTab's MCP server connected to a remote browser instance. Covers navigation, element interaction, data extraction, form filling, multi-step flows, and session management via MCP tools.
azure-messaging-webpubsub-java
Build real-time web applications with Azure Web PubSub SDK for Java. Use when implementing WebSocket-based messaging, live updates, chat applications, or server-to-client push notifications.
web-browser
Automate and interact with web pages through Chrome or Chromium using the Chrome DevTools Protocol (CDP): navigate, click, fill forms, inspect content, take screenshots, and debug console or network activity. Use when an agent needs a real browser. Prefer headless Chrome unless visible browser interaction is required.