Agent Skills
› pollinations/pollinations
› web-research
web-research
GitHub通过 Pollinations API 调用 Gemini、Perplexity 等模型进行网络搜索,获取带有来源的实时答案。支持单模型查询、多模型对比及并行执行,适用于需要事实核查或最新信息的研究场景。
Trigger Scenarios
需要基于互联网的最新信息进行回答
需要对某个声明进行事实核查并寻找来源
需要对比不同搜索引擎模型的输出结果
Install
npx skills add pollinations/pollinations --skill web-research -g -y
SKILL.md
Frontmatter
{
"name": "web-research",
"description": "Query Pollinations text API with web-search models (gemini-search, perplexity-fast, nomnom, etc.). Use when you need web search grounded answers via Pollinations."
}
Web Research
Available Models
- gemini-search — Google Gemini with web search grounding (default)
- perplexity-fast — Perplexity AI, faster (default)
- perplexity — Perplexity AI
- nomnom — NomNom search model
By default, queries both gemini-search and perplexity-fast in parallel.
Requirements
curl
Authentication
Set an API key in an environment variable (preferred):
export POLLINATIONS_API_KEY="YOUR_KEY"
Or create a local .env file at .claude/skills/web-research/.env:
POLLINATIONS_API_KEY="YOUR_KEY"
If POLLINATIONS_API_KEY is not set, the script will prompt for a key (input hidden).
Quick usage
.claude/skills/web-research/scripts/web-research.sh "What is pollinations.ai?"
Choose a model:
.claude/skills/web-research/scripts/web-research.sh --model perplexity-fast "Fact-check this claim with sources"
Compare multiple models:
.claude/skills/web-research/scripts/web-research.sh --models gemini-search,perplexity-fast,nomnom "Compare answers"
Run multi-model in parallel:
.claude/skills/web-research/scripts/web-research.sh --models gemini-search,perplexity-fast --parallel "Compare answers"
Notes
- Uses
https://gen.pollinations.ai/v1/chat/completions - Sends
Authorization: Bearer <key>
Version History
- 99bce92 Current 2026-07-25 10:39


