Install
openclaw skills install linkfox-google-aimodel-search基于 Google 搜索的 AI 概览(AI Overview / AI Mode)抓取与多轮追问,针对一个关键词同时返回主搜索的 AI 概览要点和多个追问问题的答案,适合用最新网页信息做深度调研、技术问答、长尾选品分析、海外消费者偏好分析。当用户提到 Google AI、AI Overview、AI Mode、谷歌AI概览、谷歌AI搜索、海外深度调研、长尾选品调研、消费者偏好分析、网页要点总结、Google AI search, AI Overview, AI Mode, deep research, consumer preference analysis 等场景时触发此技能。即使用户未明确提到"Google AI",只要其需求是"用谷歌搜索 + AI 总结网页要点 + 多轮追问",也应触发此技能。
openclaw skills install linkfox-google-aimodel-searchThis skill calls Google Search in AI Mode to get the AI Overview answer for a keyword and follow up with up to several additional questions in a single round trip. The response is unstructured Markdown — summarize it directly, do not route it to a data-analysis sandbox.
The tool drives Google's AI Mode (the panel that appears at the top of Google search results and synthesizes an answer with citations) and stitches multi-turn follow-ups into one call:
keyword is sent to Google as the initial query and the AI Overview for it is captured first.prompts array is asked as a follow-up question in the same AI conversation, in order.stdout, with each section clearly labelled and citations linked to the source pages.resultsNum reports how many AI Overview blocks were rendered; 0 means the keyword did not trigger an AI Overview on Google for the requested locale.
| Parameter | Type | Required | Description |
|---|---|---|---|
| keyword | string | Yes | Initial Google search keyword (≤ 1000 chars). Sent as the q= parameter to Google AI Mode. |
| prompts | string[] | No | Follow-up questions for additional turns of the same AI conversation. Recommended ≤ 5 entries; more is allowed but response time degrades sharply. Omit this field for a single-shot AI Overview lookup with no follow-ups. |
| Field | Type | Description |
|---|---|---|
| stdout | string | Markdown document with the AI Overview for the keyword and each follow-up answer in order, plus inline citation links |
| sourceUrl | string | The Google AI Mode search URL that was actually requested |
| resultsNum | integer | Number of AI Overview blocks rendered (0 = keyword did not trigger AI Overview) |
| code / errcode | string / integer | 200 on success; non-200 indicates a business error |
| msg / errmsg | string | ok on success; otherwise an error description |
| costTime | integer | API latency in milliseconds |
| costToken | integer | Tokens consumed (only billed on success) |
| taskId | string | Upstream task identifier for tracing |
| type | string | Render hint, fixed value stdoutWorkbenches |
This tool is exposed via the LinkFox tool gateway. See references/api.md for the calling convention, request/response shape, error codes, and a curl example. You can also run scripts/google_ai_search.py directly to test it from the command line.
The two inputs work together: keyword is the entry point, prompts are the follow-ups. Treat them as one continuous AI conversation, not as independent searches.
keyword: include market/region cues when relevant ("open-ear bone-conduction headphones US 2026") — the AI Overview is sensitive to phrasing.prompts focused and ordered: each follow-up reuses the previous turn's context, so cheaper questions go first (e.g. "what are the main use cases?" before "what are the unsolved technical pain points?").prompts: phrasing like "compare against" / "what are the unsolved pain points" elicits richer AI Overview output than single keywords.1. Single-shot AI Overview (no follow-ups — prompts omitted)
Pass keyword only when the user just wants the AI Overview for one query, with no multi-turn follow-up. prompts is optional and can be left out entirely:
{
"keyword": "GaN charger vs traditional charger comparison"
}
2. Cross-border product research with follow-ups
{
"keyword": "best open-ear bone conduction headphones 2026 US",
"prompts": [
"What are the main use cases consumers care about?",
"What unsolved technical pain points still exist compared to in-ear earbuds?"
]
}
3. Consumer preference snapshot
{
"keyword": "robot vacuum buying preferences 2026 reddit",
"prompts": [
"Which features get praised most in user reviews?",
"Which complaints come up repeatedly?"
]
}
4. Long-tail keyword exploration for selection
{
"keyword": "smart pet feeder for cats with camera",
"prompts": [
"What price ranges are mentioned most often?",
"Which brands appear in the top picks?"
]
}
stdout is already structured Markdown with headings, bullets, and citation links — preserve that structure when answering the user.stdout so the user can verify each claim.resultsNum is 0, tell the user Google AI Overview did not trigger for that keyword and suggest rephrasing or trying a different region.code / errcode is not 200, surface the msg / errmsg to the user and suggest retrying or refining the input.resultsNum = 0).prompts length: each follow-up is an additional AI turn on Google; 5+ prompts can take tens of seconds.keyword to match the market you care about.Applicable — when the user wants AI-summarized live web information with multi-turn depth:
| User Says | Scenario |
|---|---|
| "用 Google AI 帮我搜...", "Google AI Overview 看下..." | Direct AI Overview lookup |
| "海外消费者对 XX 怎么看", "美国市场对 XX 的偏好" | Cross-border consumer preference |
| "XX 的最新趋势 / 痛点 / 使用场景" | Deep research with follow-ups |
| "顺便问一下 / 然后再追问 ..." | Multi-turn follow-up needed |
| "网页上对 XX 的总结", "搜索引擎里大家怎么说 XX" | Web-wide summarization |
| "长尾选品调研 / 蓝海选品方向" | Long-tail product exploration |
Not applicable — better routed elsewhere:
Boundary judgment: when the user wants "AI 帮我汇总网上的说法" or "用谷歌搜并追问几轮", this skill applies. If they explicitly want raw search results, structured data, or already have a specialized data source, do not use this skill.
Feedback:
Auto-detect and report feedback via the Feedback API when any of the following apply:
Call the feedback API as specified in references/api.md. Do not interrupt the user's flow.
For more high-quality, professional cross-border e-commerce skills, set LinkFox Skills.