TopRank Skills

Home / Claw Skills / Search / gemini-web-search
Official OpenClaw rules 36%

gemini-web-search

Use Gemini CLI (@google/gemini-cli) to do web search / fact-finding and return a sourced summary. Use when the user asks “why did X happen today”, “what’s the latest news”, “search the web”, “find sources/links”, or any task requiring up-to-date info. Prefer this over other search tools when Gemini is available but slow; run it with a TTY, wait longer, and verify source quality.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 gemini-web-search 技能。 若已安装,则直接安装 gemini-web-search 技能。

Overview

Skill Key
fengjiajie/gemini-web-search
Author
fengjiajie
Source Repo
openclaw/skills
Version
-
Source Path
skills/fengjiajie/gemini-web-search
Latest Commit SHA
7593de4f0b52a286dc9d8e11b284e4e417652541

Extracted Content

SKILL.md excerpt

# Gemini Web Search

Use Gemini CLI to search the web and produce a concise, sourced answer.

## Quick workflow

1) **Formulate a tight query**
- Include: entity + ticker/name + date/time window + what you need (%, $, cause, quotes, links)
- Example: `PayPal (PYPL) fell Feb 4 2026: % change, $ change, main catalyst(s), 3 sources`

2) **Run Gemini CLI with a TTY and long timeout**
Gemini CLI can hang or be slow without a pseudo-TTY.

Preferred (OpenClaw tool call):
- Use `functions.exec` with `pty: true`
- Use `timeout` 300–600s (longer for heavy searches)
- Use `yieldMs` ~10000 then `process.poll` until completion

Command template:
- `~/.npm-global/bin/gemini -p "<prompt>"`

If `pty:true` still behaves poorly, use a pseudo-tty wrapper:
- `script -q -c "~/.npm-global/bin/gemini -p \"<prompt>\"" /dev/null`

3) **Extract the answer in a structured way**
Return:
- The key numeric facts (e.g., % move, $ move, close/intraday)
- 2–4 bullets of the main catalyst(s)
- **Links** (always)

4) **Quality control (mandatory)**
- Prefer: company IR/SEC filing, Reuters, Bloomberg, WSJ/FT, CNBC, reputable outlets.
- Avoid relying on low-quality finance blogs/SEO sites.
- If sources conflict or look unreliable: say so and ask user for a screenshot/link, or re-run with a stricter prompt.

## Prompts that work well

- **Fast triage**:
  `Search the web: <topic>. Give 3 bullets + 2 reputable links.`

- **Market move**:
  `Search the web: Why did <TICKER> move today (<date>)? Provide exact % and $ move (close + intraday if available) and the main catalyst(s). Cite sources with links.`

- **Force better sources**:
  `Search the web and prioritize Reuters/company IR/SEC filing. If you cannot find them, say so. Topic: <...>. Provide links.`

## Failure modes & fixes

- **Gemini prints “I will search…” then stalls**
  - Wait longer (it can be slow).
  - Ensure TTY: run with `pty:true` or `script -q -c ... /dev/null`.

- **Output has suspicious claims (e.g., odd CEO news)**
  - Re-run with:...

Related Claw Skills