backlink-discovery

backlink-discovery is a skill for Claude Code, Codex from kennyzir/7deer_skills. It costs 98 tokens per session (1,248 once invoked), scanned A, original, MIT.

A backlink-discovery tool that searches for websites where a given site might be mentioned or listed. A backlink is a link from another website to the target site; this tool only finds opportunities and does not submit anything.

In plain words
What is it for?
Use it after providing a website address to discover and categorize relevant backlink opportunities, stop when its discovery conditions are met, and review the saved platform list and summary.
Why use it?
It replaces manually searching many kinds of communities, directories, wikis, forums, and code sites with repeated searches and keyword expansion. Results for each target URL are stored separately.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it after providing a website address to discover and categorize relevant backlink opportunities, stop when its discovery conditions are met, and review the saved platform list and summary.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kennyzir/7deer_skills/backlink-discovery
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add kennyzir/7deer_skills --skill backlink-discovery
Clone the repo
git clone --depth 1 https://github.com/kennyzir/7deer_skills

Made for: Claude Code, Codex.

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 backlink-discovery

README.md
[![agentmods](https://agentmods.dev/badge/skills/kennyzir/7deer_skills/backlink-discovery/github.svg)](https://agentmods.dev/skills/kennyzir/7deer_skills/backlink-discovery)
Your own site
<a href="https://agentmods.dev/skills/kennyzir/7deer_skills/backlink-discovery"><img src="https://agentmods.dev/badge/skills/kennyzir/7deer_skills/backlink-discovery/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 backlink-discovery

Your own site · 80×15
<a href="https://agentmods.dev/skills/kennyzir/7deer_skills/backlink-discovery"><img src="https://agentmods.dev/badge/skills/kennyzir/7deer_skills/backlink-discovery.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 98 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,248 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
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.00098 $0.01248
Opus 5 $0.00049 $0.00624
Sonnet 5 $0.00020 $0.00250
Haiku 4.5 $0.00010 $0.00125

Measured 13d ago against content hash 4b6423a495f4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

backlink-discovery scanned grade A with 0 findings 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 13d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/discovery_engine.py, scripts/discovery_prompt.py, scripts/discovery_task.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

backlink-discovery/SKILL.md · 157 lines

How it starts

The opening of the file, as written. The whole thing — 157 lines — stays where its author put it; the contents beside it link to each section on GitHub.

核心逻辑

每个 URL = 独立发现任务,目标 300 个平台。

用户输入 https://xxx.com
  → 立即用 web_search 开始前台搜索
  → 多轮关键词派生,持续发现
  → 达到 300 个平台后停止
  → 结果存入数据库

下次输入 https://yyy.com
  → 新的独立发现任务
  → 各自数据库,互不干扰

触发方式

发现 https://xxx.com 的外链机会(目标300个)

Step 1:接收任务,提取种子关键词

解析目标 URL,实时提取种子关键词(不写死):

https://robloxcalc.com
  ↓
种子关键词:roblox, calculator, math, lua, game, game calculator, gaming, education, tool

Step 2:多轮 web_search(前台执行)

每轮用 web_search 搜索 8-12 个查询,从结果提取平台域名 → 分类 → 判断相关度。

搜索词思路要宽,不要只搜"xxx alternatives":

  • 竞品 + "free tools list"
  • 竞品 + "directory submit"
  • 竞品 + "community"
  • 竞品 + "tutorial resources"
  • 竞品 + "wiki"
  • 竞品 + "github awesome list"
  • 竞品 + "for kids/math/education"
  • 竞品 + "game dev"
  • 竞品 + "fan sites blogs"
  • 竞品 + "similar games"
  • 竞品 + "submit free"

每轮结束后从发现结果中派生新关键词 → 进入下一轮。

停止条件:

  • 达到 300 个平台 → 停止
  • 连续 2 轮无新发现 → 停止

Step 3:结果写入数据库

每个 URL 独立数据库目录:

memory/backlink-discovery/{提取的域名}/
├── platforms.json      # 所有发现平台(含相关度、方式分类)
└── summary.md         # 汇总报告

Step 4:返回结果

发现完成后返回:

  • 总平台数 + P0/P1/P2 分布
  • 外链方式分布
  • Top 10 高相关平台
  • 数据存放路径

用户查询时读数据库返回最新状态。

数据库读取

查询 https://xxx.com 的外链发现结果
→ 读 memory/backlink-discovery/xxx_com/platforms.json
→ 返回 P0/P1/P2 分类 + 外链方式分布 + 完成状态

平台分类体系

分类 相关度 说明
🔴 P0 ≥0.7 主题高度相关,明显外链机会
🟡 P1 0.4-0.7 较相关,可尝试
🟢 P2 <0.4 关联一般

外链方式分类

方式 适用平台
forum_post Reddit、Discord、GameFAQs 等社区
github_pr GitHub Awesome Lists、资源列表
wiki_edit Wikipedia、Fandom Wiki
alternatives_article Alternatives/对比文章站
directory_submit 目录站、产品提交页
guest_post Dev.to、Hashnode、技术博客
email_outreach 有联系邮箱的任意平台
social_post Twitter、LinkedIn
manual_review 其他方式

输出格式

# {网站} 外链机会发现报告

## 发现状态
- 状态:已完成
- 平台库:X / 300 个
- 发现时间:时间

## 🔴 P0 高相关平台(X 个)
[表格]

## 🟡 P1 中相关平台(X 个)
[按类型分组列出]

## 🟢 P2 低相关平台(X 个)

## 📊 外链方式分布
- Forum 发帖:X 个
- GitHub PR:X 个
- Alternatives Outreach:X 个
- 目录提交:X 个
- 其他:X 个

## 🔄 下一步
建议执行 backlink-executor 处理 P0 平台

Read the full file on GitHub · 157 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 13d ago First seen · 157 lines · 98 tokens per session scan A 4b6423a495f4

Subscribe to this mod's changes

backlink-discovery is a skill published in the GitHub repository kennyzir/7deer_skills (313 stars, last pushed 4d ago), licensed MIT. It adds 98 tokens to every session and 1,248 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. 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

migrate-radix-to-base

Migrates React projects and components from Radix UI to Base UI. Use when asked to migrate from radix, move to base-ui, convert radix primitives, or switch a shadcn project's base library. Handles single components ("migrate accordion") and whole projects.

shadcn-ui/ui · 61 tokens

non-json-content-types

Handle FormData, file uploads, Blob, Uint8Array, and ReadableStream inputs in tRPC mutations. Use octetInputParser from @trpc/server/http for binary data. Route non-JSON requests with splitLink and isNonJsonSerializable() from @trpc/client. FormData and binary inputs only work with mutations (POST).

trpc/trpc · 75 tokens

trigger-authoring-tasks

Covers writing backend Trigger.dev tasks with @trigger.dev/sdk: defining task() and schemaTask(), the run function and its ctx, retries, waits, queues and concurrency, idempotency keys, run metadata, logging, triggering other tasks (and the Result shape), scheduled/cron tasks, and the essentials of trigger.config.ts.…

triggerdotdev/trigger.dev · 115 tokens

saas-builder

Clone, verify, map, and build on top of ixartz/SaaS-Boilerplate for a user's SaaS idea. Use when a user wants to reuse SaaS Boilerplate, evaluate how their product fits it, or build product-specific pages, database schema, roles, permissions, MVP features, and launch scope on top of the boilerplate.

ixartz/SaaS-Boilerplate · 75 tokens

arcgis-to-portaljs

Migrate a whole ArcGIS Hub site into a PortalJS Arc portal end-to-end. Harvests the Hub /data.json (DCAT-US) inventory, exports every FeatureService layer through the ArcGIS REST query API with resultOffset paging, converts each to the serverless dual tier (PMTiles render + GeoParquet query) with tabular items to…

datopian/portaljs · 134 tokens

fast-typescript-check

Keep www-sacred's TypeScript fast to type-check and fast to run. Use when touching the ASCII/canvas animation components (the only real per-frame code here), tightening type-check wall-clock, or auditing a change for runtime or compiler regressions. Scoped to this repo — a React 19 / Next.js 16 component library plus…

internet-development/www-sacred · 84 tokens