Keyword planner
Open-source skills that turn your agent into an SEO operator. Diagnose traffic decay, write refresh briefs, build proposals, and generate client-ready reports.
npx -y skills add marketingskills/seo --skill keyword-plannerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Get keyword ideas, average monthly search volume, competition, and bid ranges from the local Google Ads Keyword Planner CLI. Use when Codex needs live keyword demand data from Google Keyword Planner for seed keywords or a seed URL, needs JSON keyword idea exports for SEO prioritization, needs country/language-specific demand checks, or needs to exclude already-covered content from keyword research.
SKILL.md
6.0 KB, as published. Nobody here has run it
Keyword Planner
Overview
Use the local keyword-planner command to pull Google Keyword Planner ideas and search-volume metrics directly from the Google Ads API. The CLI calls Google's KeywordPlanIdeaService.GenerateKeywordIdeas, which is the API equivalent of the Keyword Planner flow in the Google Ads UI. Prefer this skill when the user asks for keyword volume, keyword ideas, demand validation, CPC/bid ranges, or a keyword list grounded in Keyword Planner rather than SERP estimates or memory.
Google does not charge a separate per-call fee for normal Google Ads API usage, but calls are governed by the developer token's access level and daily operation limits. The user still needs an eligible Google Ads account and approved API access.
Quick Start
Use JSON output by default so results can be filtered, sorted, and summarized reliably:
keyword-planner --keywords "seo tools" "keyword research" --output json
Use a URL seed when the user wants ideas from an existing page or competitor page:
keyword-planner --url "https://example.com/page" --output json
If sandbox policy requires approval for network/API access, request escalation before running the command. The command calls the Google Ads API.
Inputs
Collect or infer:
- Seed keywords with
--keywords, or one seed URL with--url. - Optional
--customer-idifGOOGLE_ADS_CUSTOMER_IDis not already configured. - Optional
--location-ids; default is2840for the United States. - Optional
--language-id; default is1000for English. - Optional existing-content spreadsheet path for exclusion.
Ask for missing seeds if the user provides neither keywords nor a URL. Do not ask for credentials unless the command fails or the user has not configured a Google Ads customer ID.
Access and Credentials
There is no simple "Keyword Planner API key." The required access credential is a Google Ads API developer token, plus authentication credentials for the Google Ads account the CLI should query.
To get access:
- Create or choose a Google Ads manager account. The API Center is available from manager accounts, not ordinary client accounts.
- Open the Google Ads API Center at
https://ads.google.com/aw/apicenterwhile signed in to that manager account. - Complete the API Access form and accept the terms.
- Copy the developer token shown in API Center after Google grants access. New tokens may start with Explorer or Test access before Basic or Standard access is approved.
- Create authentication credentials for the CLI. This local wrapper is written for service-account JSON credentials, so place
google-key.jsonwhere the CLI can find it or pass--key-file. - Set the customer ID and developer token:
GOOGLE_ADS_CUSTOMER_ID=1234567890
GOOGLE_ADS_DEVELOPER_TOKEN=your-developer-token
The CLI expects:
- Google Ads API access with service-account credentials.
GOOGLE_ADS_CUSTOMER_IDin.envor--customer-id.- Developer token in
GOOGLE_ADS_DEVELOPER_TOKENor asdeveloper_tokeninsidegoogle-key.json. google-key.json, unless a different path is passed with--key-file.
If credentials fail, report the exact missing item or Google Ads API error. Do not fabricate volume, CPC, or competition data as a fallback.
Existing-Content Exclusion
By default, the CLI excludes matching ideas when outputs/lindy_titles.csv exists. This is useful for net-new content planning but can hide keywords the site already covers.
Use explicit exclusion when the user provides an inventory of existing pages:
keyword-planner --keywords "crm software" --exclude-existing-content exports/pages.csv --output json
Disable exclusion when the user wants the full Keyword Planner universe, including ideas already covered:
keyword-planner --keywords "crm software" --no-exclude-existing-content --output json
Location and Language
The defaults are United States and English. Override location when the user names a country or market:
keyword-planner --keywords "accounting software" --location-ids 2826 --language-id 1000 --output json
Common location IDs:
2840: United States2826: United Kingdom2124: Canada2036: Australia
If the requested market is not one of these, look up the Google Ads geo target constant ID or ask the user for it.
Workflow
- Decide whether the request needs live Keyword Planner data. If yes, run the CLI instead of relying on memory.
- Use
--output jsonunless the user explicitly asks for a table. - Include
--no-exclude-existing-contentwhen the user asks for all ideas or volume checks for known terms. - Sort and group results according to the user goal:
- Demand validation: preserve the exact seed and closest variants first.
- Content planning: prioritize relevant, higher-volume, lower-competition ideas.
- Paid-search or commercial research: include competition and top-of-page bid ranges.
- Report the filters used: seed type, location IDs, language ID, and whether existing-content exclusion was on.
Output Fields
The JSON output contains:
keywordavg_monthly_searchescompetitioncompetition_indexlow_top_of_page_bid_microshigh_top_of_page_bid_micros
Convert bid micros to currency units when presenting CPC-style ranges: 1,000,000 micros equals 1.00.
Final Answer
Lead with the actionable read, not the raw dump. Include a compact table with keyword, volume, competition, and bid range when useful. Mention any failed API calls, missing credentials, unavailable markets, or filters that may have removed results.