Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
pollinations avatar

Web Research

  • 159 installs
  • 4.9k repo stars
  • Updated August 5, 2026
  • pollinations/pollinations

Pollinations web-research is an agent skill that runs parallel Pollinations search models from a bash CLI to answer research prompts.

About

Pollinations web-research is a small agent-invokable bash workflow for solo builders who want fast, cite-friendly answers without building a custom research stack. The script accepts a natural-language prompt, optionally reads API configuration from a nearby `.env`, and by default fans the same question to multiple Pollinations search models in parallel—starting with gemini-search and perplexity-fast. You can narrow to one model with `--model` or define your own ensemble via `--models`. That flexibility matters when you are validating an idea (what is this API?), comparing positioning statements for a landing page, or doing a quick competitive scan before scope lock. It is not a full browser automation suite; it is a deterministic CLI you can drop into agent sessions or local terminals. Because it uses `set -euo pipefail` and guarded dotenv loading, failures surface early instead of silently returning empty strings—useful when your agent chains research into a spec or brainstorm doc.

  • Default parallel query across `gemini-search` and `perplexity-fast`
  • `--model` for a single backend or `--models` CSV for a custom set
  • Loads optional `.env` from the skill tree without overwriting existing env vars
  • Documented CLI usage with quoted prompt argument
  • Examples for single-model and custom model lists (`nomnom`, etc.)

Web Research by the numbers

  • 159 all-time installs (skills.sh)
  • +1 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #3,263 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/pollinations/pollinations --skill web-research

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs159
repo stars4.9k
Security audit1 / 3 scanners passed
Last updatedAugust 5, 2026
Repositorypollinations/pollinations

What it does

Run parallel Pollinations search models from a shell script to answer research prompts without hand-copying between Gemini Search and Perplexity tabs.

Who is it for?

Best when you're scripting research during ideation, landing copy validation, or lightweight competitive checks from the terminal or agent shell.

Skip if: Deep archival research requiring curated citations, private corpus RAG, or workflows that cannot use network-backed Pollinations models.

When should I use this skill?

You have a research question in quotes and want Pollinations search models via `web-research.sh` with default or custom `--models`.

What you get

You get consolidated model output from one quoted prompt invocation, with configurable single- or multi-model runs loaded from your local `.env` when present.

  • Terminal output from one or more search models for the given prompt
  • Reproducible CLI invocation pattern for agents (--model / --models flags)

By the numbers

  • Default model pair: gemini-search and perplexity-fast queried in parallel

Files

SKILL.mdMarkdownGitHub ↗

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>

Related skills

How it compares

A CLI research fan-out skill—not a journey-wide planning methodology or in-repo code review checker.

FAQ

Who is Pollinations web-research for?

Developers and agent users who want a repeatable shell script to query Pollinations search models instead of one-off HTTP experiments.

When should I use Pollinations web-research?

In Idea for market and competitor discovery, in Validate when checking claims for a landing page or scope doc, and in Grow when refreshing positioning or support FAQs from the open web.

Is Pollinations web-research safe to install?

Check the Security Audits panel on this page, keep API keys only in `.env`, and avoid piping sensitive customer data into third-party search models without reviewing your compliance needs.

AI & Agent Buildingresearchautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.