Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

browse-geo浏览地理

Agent Skill

browse-geo 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

291

周安装

12

GitHub Stars

公开资料未说明

下载量

95
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:browse-geo(浏览地理)
来源仓库:https://github.com/ulpi-io/skills
仓库路径:skills/browse-geo
安装命令:
npx skills add https://github.com/ulpi-io/skills --skill browse-geo
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/ulpi-io/skills --skill browse-geo

简介

browse-geo 用于监测品牌或域名在 AI 生成搜索结果中的可见性与排名情况。

  • 它跨平台整理 Google AI Overviews、Perplexity 与 ChatGPT Search 的表现数据。
  • 使用时需提供目标关键词与域名,输出包含位置与上下文的矩阵报告。
  • Google 查询需 camoufox 支持以防被拦截,其他平台使用标准 Chromium 即可。
  • browse-geo 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

browse-geo: Generative Engine Optimization Monitoring

Goal

Monitor how a brand or domain appears in AI-generated search results across three engines: Google AI Overviews, Perplexity, and ChatGPT Search. Produce a visibility matrix showing which queries surface the target domain, in what position, and with what context.

Prerequisites

Camoufox is required for Google (bot detection). Check availability:

browse --runtime camoufox doctor

If camoufox is not installed, stop and tell the user to install it manually:

Install it with: npm install camoufox-js && npx camoufox-js fetch

Do NOT install anything automatically.

For ChatGPT Search, a persistent browser profile with an authenticated ChatGPT session is required. If one does not exist, ask the user to authenticate:

browse --profile chatgpt --headed goto https://chatgpt.com
# User logs in manually via headed browser
# Profile persists cookies for future sessions

Step 0: Gather inputs

Before running any queries, collect from the user:

  1. Target domain — the domain to track (e.g., example.com)
  2. Query list — 3-10 brand-relevant search queries
  3. Engines — which engines to check (default: all three)

If the user provides only a domain, suggest relevant queries based on the domain's likely industry and product category. Use AskUserQuestion to confirm the query list.

Step 1: Google AI Overviews

Google AI Overviews appear at the top of search results for informational queries. Use camoufox with consent dismissal to avoid bot detection and cookie banners.

Navigate and extract

For each query:

BROWSE_CONSENT_DISMISS=1 browse --runtime camoufox --headed goto "https://www.google.com/search?q=<url-encoded-query>"
browse --runtime camoufox --headed wait --network-idle
browse --runtime camoufox --headed snapshot -i

Analyze results

Read the snapshot output. The AI Overview section typically has an "AI Overview" label, expandable summary text with inline citations, and source links. If present, use browse --runtime camoufox --headed text to extract full content.

For each query, record: ai_overview_present (yes/no), domain_cited (yes/no), citation_position (number or null), citation_context (the claim it supports), and competing_domains (other cited domains).

Step 2: Perplexity

Perplexity shows AI-generated answers with numbered source citations.

Navigate and extract

For each query:

browse goto "https://www.perplexity.ai/search?q=<url-encoded-query>"
browse wait --network-idle
browse snapshot -i

Analyze results

Perplexity shows numbered footnote-style citations (e.g., [1], [2]) within the answer and a "Sources" section with URLs. Use browse text for full content if needed.

For each query, record: answer_generated (yes/no), domain_cited (yes/no), citation_numbers (positions referencing the target domain), citation_context, total_citations, and competing_domains.

Step 3: ChatGPT Search (authenticated)

ChatGPT Search requires an authenticated session. Use a persistent profile.

Navigate and query

For each query:

browse --profile chatgpt goto https://chatgpt.com
browse --profile chatgpt snapshot -i

Find the input field from the snapshot, then:

browse --profile chatgpt fill <input-ref> "<query>"
browse --profile chatgpt press Enter
browse --profile chatgpt wait --network-idle

ChatGPT streams responses. Wait for output to stabilize, then snapshot:

browse --profile chatgpt wait --network-idle
browse --profile chatgpt snapshot -i

If a stop/regenerate button is visible, the response is still streaming — wait and re-snapshot. Use browse --profile chatgpt text for full content extraction.

Analyze results

ChatGPT Search shows inline numbered citation links and a "Sources" panel with URLs.

For each query, record: response_generated (yes/no), search_used (yes/no -- ChatGPT may answer from training data without search), domain_cited (yes/no), citation_position (number or null), citation_context, and competing_domains.

Step 4: Generate visibility report

After running all queries across selected engines, compile the results into a structured report.

Visibility matrix

Create a table with queries as rows and engines as columns:

| Query                  | Google AI Overview | Perplexity | ChatGPT Search |
|------------------------|--------------------|------------|----------------|
| "best <product>"       | Cited (#2)         | Cited (#1) | Not cited      |
| "<brand> vs competitor"| No AI Overview     | Cited (#3) | Cited (#2)     |
| "how to <task>"        | Cited (#1)         | Not cited  | Not cited      |

Summary metrics

Calculate and report:

  • Visibility rate: percentage of queries where the domain appears, per engine
  • Average citation position: mean position when cited, per engine
  • Best-performing queries: queries where the domain appears across multiple engines
  • Gap queries: queries where the domain is absent from all engines
  • Top competing domains: domains that appear most frequently across all queries

Recommendations

Based on the findings, suggest:

  • Which queries have the highest AI visibility potential
  • Where competitors are cited but the target domain is not
  • Content gaps that could improve citation likelihood
  • Which engines favor the domain (focus optimization there)

Multi-query workflow

When running many queries, batch by engine to minimize context switching:

  1. Run all queries on Google AI Overviews first (camoufox session stays warm)
  2. Run all queries on Perplexity second (no special runtime needed)
  3. Run all queries on ChatGPT Search last (authenticated profile session)

Between queries on the same engine, no need to restart the browser. Navigate directly to the next search URL.

Important rules

  • Camoufox for Google — Google blocks regular Chromium for automated searches. Always use --runtime camoufox --headed for Google queries.
  • Rate limiting — Add natural pauses between queries on the same engine. Do not run more than one query every 5-10 seconds on Google. Perplexity and ChatGPT are more lenient.
  • AI Overviews are not always present — Google shows AI Overviews for informational queries, not navigational or transactional ones. Record absence as a data point.
  • ChatGPT may not use search — ChatGPT sometimes answers from training data without invoking web search. When no sources panel appears, record search_used: no.
  • Snapshot before text — always take a snapshot first to understand page structure, then use text extraction for full content if needed.
  • Do not fabricate results — if a citation is ambiguous or unclear, note it as uncertain rather than asserting presence or absence.
  • Profile persistence — the --profile chatgpt flag reuses cookies across sessions. If the session expires, ask the user to re-authenticate via headed mode.

Limitations

  • Google AI Overviews availability — not all queries trigger AI Overviews; availability varies by region and query type
  • ChatGPT Search access — requires a ChatGPT Plus or Team subscription with search enabled
  • Rate limits — aggressive querying may trigger temporary blocks on any engine
  • Dynamic content — AI-generated answers change over time; results represent a point-in-time snapshot
  • Image/video citations — this workflow tracks text citations only; rich media citations in AI answers are not captured

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.63%
按下载量换算31

Claude

31.52%
按下载量换算30

Cursor

20.47%
按下载量换算19

Gemini CLI

10.28%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills