install
source · Clone the upstream repo
git clone https://github.com/MidnightV1/agentic-feishu
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/MidnightV1/agentic-feishu "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/web-search" ~/.claude/skills/midnightv1-agentic-feishu-web-search-dc71d0 && rm -rf "$T"
manifest:
skills/web-search/SKILL.mdsource content
Web Search
使用 Gemini Google Search grounding 进行实时网络搜索。
调用方式
cd ~/Agent\ Space/agentic-feishu && python3 skills/web-search/tools.py <action> --params '<json>'
Actions
- search_web — 通用网络搜索。params:
返回 AI 合成答案 + 来源 URL 列表。{query: str} - search_news — 新闻搜索。params:
同 search_web 但偏向近期新闻结果。{query: str}
环境要求
需要
GEMINI_API_KEY 环境变量。
Examples
python3 skills/web-search/tools.py search_web --params '{"query": "latest AI news"}' python3 skills/web-search/tools.py search_news --params '{"query": "OpenAI GPT-5"}'