Jump to related tools in the same category or review the original source on GitHub.

Web & Frontend Development @psyduckler Updated 2/17/2026

Aeo Prompt Frequency Analyzer OpenClaw Plugin & Skill | ClawHub

Looking to integrate Aeo Prompt Frequency Analyzer into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate web & frontend development tasks instantly, without having to write custom tools from scratch.

What this skill does

Analyze what search queries Gemini uses when answering a prompt, by running it multiple times with Google Search grounding and reporting frequency distribution. Use when investigating AEO query patterns, understanding how AI models search the web for a topic, or studying the probabilistic nature of AI-triggered search queries.

Install

npx clawhub@latest install aeo-prompt-frequency-analyzer

Full SKILL.md

Open original
Metadata table.
namedescription
aeo-prompt-frequency-analyzerAnalyze what search queries Gemini uses when answering a prompt, by running it multiple times with Google Search grounding and reporting frequency distribution. Use when investigating AEO query patterns, understanding how AI models search the web for a topic, or studying the probabilistic nature of AI-triggered search queries.

SKILL.md content below is scrollable.

Prompt Frequency Analyzer

Run a prompt N times against Gemini with Google Search grounding enabled. Collect and report the frequency of search queries Gemini generates across all runs.

Usage

GEMINI_API_KEY=$(security find-generic-password -s "nano-banana-pro" -w) \
  python3 scripts/analyze.py "your prompt here" [--runs 10] [--model gemini-2.5-pro] [--concurrency 5] [--output text|json]

Run from the skill directory. Resolve scripts/analyze.py relative to this SKILL.md.

Options

  • --runs N — Number of times to run the prompt (default: 10)
  • --model NAME — Gemini model to use (default: gemini-2.5-pro)
  • --concurrency N — Max parallel API calls (default: 5; keep ≤5 to avoid rate limits)
  • --output text|json — Output format (default: text)

Output

Reports for each unique search query:

  • Frequency percentage (how many runs used that query)
  • Raw count
  • Top web sources referenced

Notes

  • Gemini API key must be in GEMINI_API_KEY env var (stored in macOS Keychain under nano-banana-pro)
  • Each run is independent — Gemini may use different search queries each time
  • Retries failed requests up to 3 times with exponential backoff
  • Use --output json for programmatic consumption
Original Repository URL: https://github.com/openclaw/skills/blob/main/skills/psyduckler/aeo-prompt-frequency-analyzer
Latest commit: https://github.com/openclaw/skills/commit/5a93a5a214e3b1505bf0fffd4bb80c22e1c12685

Related skills

If this matches your use case, these are close alternatives in the same category.