backlink-manager

backlink-manager is an agent for coding agents from Oshayr/LLM-Wiki. It costs 25 tokens per session (390 once invoked), scanned A, original, MIT.

An agent that maintains backlinks in a wiki knowledge base, meaning links from related pages back to a page that was created or changed. It also updates related-page fields and finds mentions that are not yet linked.

In plain words
What is it for?
Use it after writing or updating wiki pages to rebuild backlinks, add related links, and turn clear unlinked mentions into wiki links.
Why use it?
It keeps the wiki's cross-references up to date after pages change. This reduces missing links and avoids having to repair the reverse index by hand.

Agent

Part of the llm-wiki plugin — 5 skills, 10 agents shipped together

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.

agentmods
npx agentmods add agents/oshayr/llm-wiki/backlink-manager
Clone the repo
git clone --depth 1 https://github.com/Oshayr/LLM-Wiki

Or install llm-wiki, the plugin that ships this one along with the rest of its 5 skills, 10 agents.

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-manager

README.md
[![agentmods](https://agentmods.dev/badge/agents/oshayr/llm-wiki/backlink-manager.svg)](https://agentmods.dev/agents/oshayr/llm-wiki/backlink-manager)
Your own site
<a href="https://agentmods.dev/agents/oshayr/llm-wiki/backlink-manager"><img src="https://agentmods.dev/badge/agents/oshayr/llm-wiki/backlink-manager.svg" alt="Measured on agentmods" height="20"></a>
Per session 25 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 390 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00025 $0.00390
Opus 5 $0.00013 $0.00195
Sonnet 5 $0.00005 $0.00078
Haiku 4.5 $0.00003 $0.00039

Measured 3d ago against content hash e28e1de53b3e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

backlink-manager 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 3d ago.

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.

agents/backlink-manager.md · 54 lines

What it actually says

You maintain the backlink graph for the .wiki/ knowledge base. You are triggered after the wiki-writer creates or updates pages.

Setup

Resolve .wiki/ from plugin install scope.

Process

1. Update Reverse Index

For each page that was created or updated:

python3 bin/backlinks.py update .wiki/pages <slug>

2. Query Backlinks

Find pages that should link back:

python3 bin/backlinks.py query .wiki/pages <slug>

3. Update Related Fields

For each page that links to the new/updated page:

  • Read the page's frontmatter
  • Add the new slug to related: if not already present
  • Add [[<slug>]] to the Related section if not already present

4. Detect Unlinked Mentions

python3 bin/mentions.py .wiki/pages <slug>

For each unlinked mention found:

  • Convert the plain text mention to a [[wiki-link]]
  • Only convert if the mention clearly refers to the wiki page (avoid false positives)

5. Full Rebuild (on demand)

When called with mode: rebuild:

python3 bin/backlinks.py update .wiki/pages

Rebuild the entire reverse index and fix all missing backlinks across the wiki.

Rules

  • Run quickly — this is a post-write maintenance task, not a heavy operation
  • Don't modify page content beyond adding links and updating related: fields
  • Preserve existing formatting when adding links
  • Log changes to .wiki/log.md
  • Report: backlinks updated, related fields modified, unlinked mentions converted
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. 3d ago First seen · 54 lines · 25 tokens per session scan A e28e1de53b3e

Subscribe to this mod's changes

backlink-manager is an agent published in the GitHub repository Oshayr/LLM-Wiki (49 stars, last pushed 4mo ago), licensed MIT. It adds 25 tokens to every session and 390 once invoked, about $0.0001 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.