seo-bing

seo-bing is a skill for Claude Code from AgriciDaniel/claude-seo. It costs 41 tokens per session (599 once invoked), scanned B, original, MIT.

A tool for checking and improving a website's presence in Bing Webmaster Tools and other search engines that support IndexNow. IndexNow is a way to notify participating search engines when URLs change; Bing also supplies results to Microsoft Copilot.

In plain words
What is it for?
Use it to inspect Bing links, compare registered sites, submit one or many URLs through IndexNow, and verify an IndexNow setup.
Why use it?
It helps track search visibility outside Google and reduces the delay between publishing a page and notifying supported search engines about it.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable. Also seen: reads .claude/ paths.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the claude-seo plugin — 31 skills, 18 agents, 1 hook shipped together

Good fit Use it to inspect Bing links, compare registered sites, submit one or many URLs through IndexNow, and verify an IndexNow setup.

Compare 6 skills from other repositories ↓
About the project

Claude SEO is an open-source Claude Code plugin that runs specialized agents and skills to audit websites across technical SEO, content quality, structured data, AI-search optimization, local and e-commerce SEO, and international SEO. SEO practitioners use it to produce prioritized recommendations based on primary-source guidance, with optional extensions for external data and crawling.

AgriciDaniel/claude-seo · 16,757 stars · on GitHub · claude-seo.md

Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add AgriciDaniel/claude-seo
Claude Code
/plugin install claude-seo

Made for: Claude Code.

Or install claude-seo, the plugin that ships this one along with the rest of its 31 skills, 18 agents, 1 hook.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for seo-bing

README.md
[![agentmods](https://agentmods.dev/badge/skills/agricidaniel/claude-seo/seo-bing/github.svg)](https://agentmods.dev/skills/agricidaniel/claude-seo/seo-bing)
Your own site
<a href="https://agentmods.dev/skills/agricidaniel/claude-seo/seo-bing"><img src="https://agentmods.dev/badge/skills/agricidaniel/claude-seo/seo-bing/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for seo-bing

Your own site · 80×15
<a href="https://agentmods.dev/skills/agricidaniel/claude-seo/seo-bing"><img src="https://agentmods.dev/badge/skills/agricidaniel/claude-seo/seo-bing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 599 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe. ✓ AI security review Fable 5.1 · 6 Sept 2026 📄 Read the review Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Agent Snooping · line 6
    Skill reads from agent configuration directories (.claude/, .codex/, .gemini/). These directories may contain API keys, personal settings, and other credentials that the skill has no legitimate need to access.
    Fix: Remove all code or instructions that access agent configuration directories (.claude/, .codex/, .gemini/). If configuration values are needed, pass them explicitly as parameters or environment variabl
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00041 $0.00599
Opus 5 $0.00020 $0.00300
Sonnet 5 $0.00008 $0.00120
Haiku 4.5 $0.00004 $0.00060

Measured today against content hash a49d4ac84f2b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade B, and why

seo-bing scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

compatibility: "Requires BING_WEBMASTER_API_KEY and (optionally) INDEXNOW_KEY in ~/.claude/settings.json env. Run extensions/bing-webmaster/install.sh to configure."
extensions/bing-webmaster/skills/seo-bing/SKILL.md · 48 lines

What it actually says

seo-bing

The non-Google indexing surface. Google still rejects IndexNow (per Gary Illyes, multiple SOTR episodes 2024-2025), so this skill is specifically for Amazon/Bing/Naver/Seznam.cz/Yandex/Yep indexing and Microsoft Copilot AI citation (which pulls from the Bing index).

Prerequisites

  • Run extensions/bing-webmaster/install.sh or install.ps1.
  • A Bing Webmaster Tools API key.
  • Optional: an IndexNow host key (32+ chars) published at the URL declared as INDEXNOW_KEY_LOCATION.

Routing

Command Underlying script
/seo bing links <url> "${CLAUDE_PLUGIN_ROOT}/scripts/claude-seo" run bing_webmaster.py links <url>
/seo bing compare <urlA> <urlB> "${CLAUDE_PLUGIN_ROOT}/scripts/claude-seo" run bing_webmaster.py compare <urlA> <urlB>; both properties must be registered to the API account
/seo bing submit <url> (single URL) "${CLAUDE_PLUGIN_ROOT}/scripts/claude-seo" run indexnow_submit.py --host ... --urls <url>
/seo bing submit-batch <file> "${CLAUDE_PLUGIN_ROOT}/scripts/claude-seo" run indexnow_submit.py --host ... --urls-file <file>
/seo bing verify-indexnow "${CLAUDE_PLUGIN_ROOT}/scripts/claude-seo" run indexnow_submit.py --host ... --verify-only

When this skill applies

  • The user is publishing new pages and wants Microsoft Copilot citation eligibility (Bing index ingestion).
  • The user wants to nudge Amazon/Bing/Naver/Seznam.cz/Yandex/Yep indexing for fresh URLs.
  • The user manages both properties and wants to compare their Bing link data. For an arbitrary competitor, route to DataForSEO, Moz, or Common Crawl.

Cross-skill delegation

  • For Google indexing (very different model, sitemap-driven, no IndexNow), use seo-google indexing.
  • For multi-source backlink confidence weighting, fall back to seo-backlinks which already integrates Bing + Moz + CC.
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. today Changed a49d4ac84f2b
  2. 12d ago First seen · 48 lines · 41 tokens per session scan B acc66bbab32a

Subscribe to this mod's changes

seo-bing is a skill published in the GitHub repository AgriciDaniel/claude-seo (16,757 stars, last pushed today), licensed MIT. It adds 41 tokens to every session and 599 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

blog

Full-lifecycle blog engine with 31 sub-skills, 12 content templates, 5-category 100-point scoring, and 5 specialized agents. Routes user requests to the right sub-skill: writing, rewriting, analysis, outlines, audits, schema, charts, images, repurposing, AI citation SEO, FLOW framework prompts, topic-cluster…

AgriciDaniel/claude-blog · 202 tokens

blog-cluster

Semantic topic cluster planning and automated execution engine for claude-blog. Performs SERP-based keyword research, groups keywords by search intent and SERP overlap, builds a hub-and-spoke cluster architecture, generates an interactive SVG cluster map, and executes the full cluster by orchestrating blog-write calls…

AgriciDaniel/claude-blog · 135 tokens

blog-rewrite

Rewrite and optimize existing blog posts for Google SEO (May 2026 Core Update, March 2026 core/spam context, June 2026 spam context, E-E-A-T) and AI citation visibility as one SEO discipline. Full rewrite for both Google rankings AND AI citations. For AI-citation-only audit (no Google work), use blog-geo instead.…

AgriciDaniel/claude-blog · 176 tokens

blog-discourse

Research what people are actually saying about a topic in the last 30 days across Reddit, X / Twitter, YouTube, Hacker News, dev.to, Medium, and other public discourse platforms. API-free; uses WebSearch with platform-targeted site operators plus recency filters. Produces DISCOURSE.md (a structured brief) and JSON…

AgriciDaniel/claude-blog · 168 tokens

blog-seo-check

Post-writing SEO validation with pass/fail checklist covering title tag length and keyword placement, meta description quality, heading hierarchy and keyword density, internal/external link audit with anchor text analysis, canonical URL verification, Open Graph meta tags (og:title, og:description, og:image), Twitter…

AgriciDaniel/claude-blog · 137 tokens

blog-cannibalization

Detect keyword cannibalization across blog posts by extracting primary keywords from titles and headings, clustering semantically similar targets, and flagging posts competing for the same search intent. Supports local-only mode (grep-based) and DataForSEO API mode (Page Intersection endpoint at $0.01/call). Outputs…

AgriciDaniel/claude-blog · 106 tokens