Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

google-search-console-cliGoogle 搜索 console CLI

Agent Skill

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

总安装

356

周安装

15

GitHub Stars

13

下载量

125
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bin-huang/google-search-console-cli --skill google-search-console-cli

简介

google-search-console-cli 查询 Search Console 索引与搜索表现。

  • 支持 URL 检查、覆盖报告与 sitemap 管理。
  • 通过 npx skills add 安装,配置 service account 密钥。
  • 仅读权限,无法修改设置,适合 SEO 诊断与监控。
  • 建议定期导出数据,建立历史趋势对比。

SKILL.md

Google Search Console CLI Skill

You have access to google-search-console-cli, a CLI for the Google Search Console API. Use it to query search analytics, inspect URL indexing, and manage sites and sitemaps.

Quick start

# Check if the CLI is available
google-search-console-cli --help

# List accessible sites
google-search-console-cli sites

If the CLI is not installed, install it:

npm install -g google-search-console-cli

Authentication

The CLI uses a Google service account. Credentials are resolved in this order:

  1. --credentials <path> flag (per-command)
  2. GOOGLE_APPLICATION_CREDENTIALS env var
  3. ~/.config/google-search-console-cli/credentials.json (auto-detected)
  4. gcloud Application Default Credentials

Before running any command, verify credentials are configured by running google-search-console-cli sites. If it fails with a credentials error, ask the user to set up authentication.

Site URL formats

Search Console uses two property types:

  • URL-prefix property: https://www.example.com/ (must include trailing slash and protocol)
  • Domain property: sc-domain:example.com (covers all protocols and subdomains)

Always use the exact format as registered in Search Console. The site URL is a positional argument for most commands.

Output format

All commands output pretty-printed JSON by default. Use --format compact for single-line JSON (useful for piping).

Commands

Search analytics query

The query command is the primary tool for search performance data.

google-search-console-cli query <siteUrl> --start-date <date> --end-date <date> [options]

Required:

  • --start-date <date> -- Start date (YYYY-MM-DD)
  • --end-date <date> -- End date (YYYY-MM-DD)

Optional:

  • --dimensions <names> -- Comma-separated: date, query, page, country, device, searchAppearance, hour
  • --type <type> -- Search type: web (default), image, video, news, discover, googleNews
  • --dimension-filter <json> -- JSON array of dimension filter groups (see below)
  • --aggregation-type <type> -- auto, byPage, byProperty, byNewsShowcasePanel
  • --row-limit <n> -- Max rows, 1-25000 (default 1000)
  • --start-row <n> -- Starting row offset (default 0)
  • --data-state <state> -- Data freshness: all, final, hourly_all
  • --all -- Fetch all rows with auto-pagination (mutually exclusive with --start-row)

Response fields per row:

  • keys -- Array of dimension values (in the order specified by --dimensions)
  • clicks -- Number of clicks
  • impressions -- Number of impressions
  • ctr -- Click-through rate (0.0 to 1.0)
  • position -- Average position in search results

Auto-pagination with --all

When --all is specified, the CLI automatically paginates through all results (using 25000 rows per page) and returns the complete dataset. This is useful for exporting all data without manual pagination.

# Get ALL queries (auto-paginates through all pages)
google-search-console-cli query https://www.example.com/ \
  --start-date 2026-02-16 \
  --end-date 2026-03-17 \
  --dimensions query \
  --all

Note: --all and --start-row cannot be used together. When --all is used, --row-limit is ignored.

Sites management

# List all sites
google-search-console-cli sites

# Get info about a specific site
google-search-console-cli site <siteUrl>

# Add a site (requires Full permission)
google-search-console-cli site-add <siteUrl>

# Remove a site (requires Full permission)
google-search-console-cli site-remove <siteUrl>

Sitemaps management

# List sitemaps for a site
google-search-console-cli sitemaps <siteUrl>

# List sitemaps under a specific sitemap index
google-search-console-cli sitemaps <siteUrl> --sitemap-index <url>

# Get info about a specific sitemap
google-search-console-cli sitemap <siteUrl> <feedpath>

# Submit a sitemap (requires Full permission)
google-search-console-cli sitemap-submit <siteUrl> <feedpath>

# Delete a sitemap (requires Full permission)
google-search-console-cli sitemap-delete <siteUrl> <feedpath>

URL inspection

# Inspect a single URL's index status
google-search-console-cli inspect <siteUrl> <inspectionUrl>

# With a specific language for messages
google-search-console-cli inspect <siteUrl> <inspectionUrl> --language zh-CN

The --language option controls the language of the messages in the response (default: en-US).

The response includes: index status (indexing state, crawl time, robots.txt status, canonical URL), AMP analysis (if applicable), mobile usability, and rich results detection.

Batch URL inspection

Inspect multiple URLs in a single command:

# From a file (one URL per line)
google-search-console-cli inspect-batch https://www.example.com/ --file urls.txt

# From stdin
cat urls.txt | google-search-console-cli inspect-batch https://www.example.com/

# With compact format (NDJSON, streams results as they complete)
cat urls.txt | google-search-console-cli inspect-batch https://www.example.com/ --format compact

Options:

  • --file <path> -- File with URLs (one per line); reads stdin if omitted
  • --language <code> -- Language code for messages (default: en-US)

Progress is written to stderr: Inspecting 1/50: https://...

With --format compact, each result is streamed as NDJSON (one JSON object per line) as soon as it completes. With --format json (default), all results are collected and output as a JSON array at the end.

Per-URL errors are captured in the output (with an error field) without stopping the batch.

Dimension filter groups

The --dimension-filter option takes a JSON array of filter groups. Each filter group contains:

  • groupType -- "and" (all filters must match)
  • filters -- Array of filter objects

Each filter object:

  • dimension -- One of: query, page, country, device, searchAppearance
  • operator -- One of: equals, notEquals, contains, notContains, includingRegex, excludingRegex
  • expression -- The value to match against

Country codes use 3-letter ISO 3166-1 alpha-3 format (e.g., USA, GBR, DEU, JPN).

Device values: DESKTOP, MOBILE, TABLET.

Filter examples

Single filter:

[{"groupType":"and","filters":[{"dimension":"country","operator":"equals","expression":"USA"}]}]

Multiple filters (AND):

[{"groupType":"and","filters":[{"dimension":"country","operator":"equals","expression":"USA"},{"dimension":"device","operator":"equals","expression":"MOBILE"}]}]

Regex filter:

[{"groupType":"and","filters":[{"dimension":"query","operator":"includingRegex","expression":"buy|purchase|order"}]}]

Page filter:

[{"groupType":"and","filters":[{"dimension":"page","operator":"contains","expression":"/blog/"}]}]

Practical examples

Top search queries

google-search-console-cli query https://www.example.com/ \
  --start-date 2026-02-16 \
  --end-date 2026-03-17 \
  --dimensions query \
  --row-limit 50

Daily performance trend

google-search-console-cli query https://www.example.com/ \
  --start-date 2026-02-16 \
  --end-date 2026-03-17 \
  --dimensions date

Top pages by clicks

google-search-console-cli query https://www.example.com/ \
  --start-date 2026-02-16 \
  --end-date 2026-03-17 \
  --dimensions page \
  --row-limit 50

Performance by country

google-search-console-cli query sc-domain:example.com \
  --start-date 2026-02-16 \
  --end-date 2026-03-17 \
  --dimensions country

Performance by device

google-search-console-cli query https://www.example.com/ \
  --start-date 2026-02-16 \
  --end-date 2026-03-17 \
  --dimensions device

Query performance for a specific page

google-search-console-cli query https://www.example.com/ \
  --start-date 2026-02-16 \
  --end-date 2026-03-17 \
  --dimensions query \
  --dimension-filter '[{"groupType":"and","filters":[{"dimension":"page","operator":"equals","expression":"https://www.example.com/product"}]}]'

Mobile performance in a specific country

google-search-console-cli query https://www.example.com/ \
  --start-date 2026-02-16 \
  --end-date 2026-03-17 \
  --dimensions query \
  --dimension-filter '[{"groupType":"and","filters":[{"dimension":"country","operator":"equals","expression":"USA"},{"dimension":"device","operator":"equals","expression":"MOBILE"}]}]'

Brand vs non-brand queries

# Brand queries
google-search-console-cli query https://www.example.com/ \
  --start-date 2026-02-16 \
  --end-date 2026-03-17 \
  --dimensions query \
  --dimension-filter '[{"groupType":"and","filters":[{"dimension":"query","operator":"includingRegex","expression":"example|exmpl"}]}]'

# Non-brand queries
google-search-console-cli query https://www.example.com/ \
  --start-date 2026-02-16 \
  --end-date 2026-03-17 \
  --dimensions query \
  --dimension-filter '[{"groupType":"and","filters":[{"dimension":"query","operator":"excludingRegex","expression":"example|exmpl"}]}]'

Blog section performance

google-search-console-cli query https://www.example.com/ \
  --start-date 2026-02-16 \
  --end-date 2026-03-17 \
  --dimensions page \
  --dimension-filter '[{"groupType":"and","filters":[{"dimension":"page","operator":"contains","expression":"/blog/"}]}]'

Image search performance

google-search-console-cli query https://www.example.com/ \
  --start-date 2026-02-16 \
  --end-date 2026-03-17 \
  --dimensions query \
  --type image \
  --row-limit 50

Which pages rank for a specific query (cannibalization check)

google-search-console-cli query https://www.example.com/ \
  --start-date 2026-02-16 \
  --end-date 2026-03-17 \
  --dimensions page \
  --dimension-filter '[{"groupType":"and","filters":[{"dimension":"query","operator":"equals","expression":"best running shoes"}]}]'

Cross-dimension analysis (query x page)

google-search-console-cli query https://www.example.com/ \
  --start-date 2026-02-16 \
  --end-date 2026-03-17 \
  --dimensions query,page \
  --row-limit 100

Device trend over time

google-search-console-cli query https://www.example.com/ \
  --start-date 2026-02-16 \
  --end-date 2026-03-17 \
  --dimensions date,device

Google News performance

google-search-console-cli query https://www.example.com/ \
  --start-date 2026-02-16 \
  --end-date 2026-03-17 \
  --dimensions page \
  --type googleNews

Discover feed performance

google-search-console-cli query https://www.example.com/ \
  --start-date 2026-02-16 \
  --end-date 2026-03-17 \
  --dimensions page \
  --type discover

Hourly performance trend (with fresh data)

google-search-console-cli query https://www.example.com/ \
  --start-date 2026-03-17 \
  --end-date 2026-03-17 \
  --dimensions hour \
  --data-state hourly_all

Per-page aggregation (deduplicate by page)

google-search-console-cli query https://www.example.com/ \
  --start-date 2026-02-16 \
  --end-date 2026-03-17 \
  --dimensions page \
  --aggregation-type byPage

Fetch all rows (auto-pagination)

google-search-console-cli query https://www.example.com/ \
  --start-date 2026-02-16 \
  --end-date 2026-03-17 \
  --dimensions query \
  --all

Paginate through large result sets (manual)

# First 1000 rows
google-search-console-cli query https://www.example.com/ \
  --start-date 2026-02-16 \
  --end-date 2026-03-17 \
  --dimensions query \
  --row-limit 1000

# Next 1000 rows
google-search-console-cli query https://www.example.com/ \
  --start-date 2026-02-16 \
  --end-date 2026-03-17 \
  --dimensions query \
  --row-limit 1000 \
  --start-row 1000

Search appearance breakdown

google-search-console-cli query https://www.example.com/ \
  --start-date 2026-02-16 \
  --end-date 2026-03-17 \
  --dimensions searchAppearance

Inspect a URL's index status

google-search-console-cli inspect https://www.example.com/ https://www.example.com/important-page

Batch inspect multiple URLs

# Create a file with URLs to inspect
echo "https://www.example.com/page1
https://www.example.com/page2
https://www.example.com/page3" > urls.txt

# Batch inspect
google-search-console-cli inspect-batch https://www.example.com/ --file urls.txt

# Or pipe from another command
google-search-console-cli query https://www.example.com/ \
  --start-date 2026-02-16 --end-date 2026-03-17 \
  --dimensions page --format compact \
  | jq -r '.rows[].keys[0]' \
  | google-search-console-cli inspect-batch https://www.example.com/ --format compact

Audit sitemaps

# List all sitemaps
google-search-console-cli sitemaps https://www.example.com/

# Check a specific sitemap
google-search-console-cli sitemap https://www.example.com/ https://www.example.com/sitemap.xml

Workflow guidance

When the user asks for a search performance overview

  1. Run google-search-console-cli sites to find accessible sites
  2. Run a query with --dimensions date for the daily trend
  3. Run a query with --dimensions query for top queries
  4. Present key metrics: total clicks, impressions, average CTR, average position

When the user asks about a specific page's SEO

  1. Use query with --dimensions query and a --dimension-filter for the page URL
  2. Use inspect to check the page's index status
  3. Cross-reference query rankings (position) with indexing health

When the user asks about mobile vs desktop performance

  1. Run query with --dimensions device for the overview
  2. Optionally drill down with --dimensions query,device to find queries that perform differently across devices

When the user asks about international performance

  1. Run query with --dimensions country for country breakdown
  2. Drill down with --dimension-filter for specific countries

When the user asks about indexing issues

  1. Use inspect for specific URLs, or inspect-batch for bulk checking
  2. Check sitemaps with sitemaps and sitemap commands
  3. Look at the inspection response for crawl errors, indexing blocks, or mobile usability issues

When the user wants to export all search data

  1. Use query with --all to auto-paginate through all results
  2. Use --format compact for NDJSON output suitable for piping to jq or other tools

Permission levels

  • Read-only (Restricted): sites, site, query, sitemaps, sitemap, inspect, inspect-batch
  • Write (Full): site-add, site-remove, sitemap-submit, sitemap-delete

Most analysis workflows only need read-only permission.

Error handling

  • Authentication errors -- ask the user to verify their service account credentials
  • 403 Permission denied -- the service account lacks access to the site; it must be added per-site in Search Console settings
  • Empty results -- check date range (data is typically available 2-3 days after the date), verify the site URL format matches the registered property
  • 400 Bad request -- check dimension filter JSON syntax and field compatibility

API documentation references

ReferenceWhen to Use
google-search-console-cli documentationFull README, setup guide, installation
Search Analytics APIQuery method, dimensions, filters, response format
URL Inspection APIInspect method, request/response fields
Sites APISite management methods and permission levels
Sitemaps APISitemap management methods and resource fields

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.23%
按下载量换算47

Claude

29.49%
按下载量换算37

Cursor

18.96%
按下载量换算24

Gemini CLI

10.25%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills