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.
npx skills add anthonysuherli/br8n --skill embeddingsgit clone --depth 1 https://github.com/anthonysuherli/br8nWrote 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.
[](https://agentmods.dev/skills/anthonysuherli/br8n/embeddings)<a href="https://agentmods.dev/skills/anthonysuherli/br8n/embeddings"><img src="https://agentmods.dev/badge/skills/anthonysuherli/br8n/embeddings.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00069 | $0.01318 |
| Opus 5 | $0.00034 | $0.00659 |
| Sonnet 5 | $0.00014 | $0.00264 |
| Haiku 4.5 | $0.00007 | $0.00132 |
Grade A, and why
embeddings 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 7d 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.
How it starts
The opening of the file, as written. The whole thing — 89 lines — stays where its author put it; the contents beside it link to each section on GitHub.
br8n — Embeddings (which provider, and switching it)
Semantic search needs vectors. br8n produces them one of three ways:
| Provider | When it applies | Dim |
|---|---|---|
remote |
AI_GATEWAY_API_KEY or OPENAI_API_KEY is set |
1536 |
local |
the br8n[local-embeddings] extra is installed, no key is set, and the KB is on the local tier — cloud pgvector columns are 1536-wide, so local always refuses on cloud |
384 |
none |
neither — capture and chronological surfaces still work, search is text-only | — |
Step 1 — Report the current state
Call mcp__plugin_br8n_br8n__br8n_embeddings_get(). Lead with the provider,
model and why it was chosen (source), then flag anything actionable:
ready: falsewithprovider: local→ the model is still downloading (~130 MB, first use only). Search stays text-only for a minute; nothing is lost.pending_findings/pending_nodesabove zero → a re-embed is draining in the background. It refills on ordinary reads; no action needed.provider: none→ say what would fix it: either set a key, orpip install 'br8n[local-embeddings]'and switch to local.pending_switchnotnull→ the environment quietly changed (e.g. a key went missing) and would flip the space (pending_switch.stored→pending_switch.detected), but existing vectors are at risk, so br8n left them alone instead of rebuilding. Tell the user what changed and offer to apply it — that offer is exactly Step 2.
Step 2 — Switch, if asked
Call mcp__plugin_br8n_br8n__br8n_embeddings_set(provider) with auto,
remote, local or none. auto is the default and means "use a key if
there is one, else local". To actually apply a deferred pending_switch,
pass the concrete detected.provider from Step 1 — that always rebuilds
immediately. Passing auto instead re-runs detection but is still subject to
the same work-at-risk gate, so if the vectors it would discard are still
there it defers again ({ok: true, deferred: true, ...}) rather than forcing
the rebuild through.
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.
- 7d ago First seen · 89 lines · 69 tokens per session scan A 5b6eb146c06f
embeddings is a skill published in the GitHub repository anthonysuherli/br8n (1 stars, last pushed 1mo ago), licensed MIT. It adds 69 tokens to every session and 1,318 once invoked, about $0.0003 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-31.
Other skills, from other repositories
ingest
Populate the gnosis-mcp knowledge base — from local files, git history, or a crawled website. Handles the full matrix of flags (--force, --prune, --wipe, --embed, --include-crawled) in one place.
setup
First-time setup wizard for Gnosis MCP. Install, init the database, ingest a docs folder, wire your editor — in that order.
tune
Find the chunk-size and retrieval config that maximizes quality on YOUR corpus. Sweeps chunk sizes, runs a golden-query set, reports nDCG / MRR / Hit@5. Use after first ingest or whenever your corpus changes shape significantly.
wegent-knowledge
Knowledge base management and search tools for Wegent. Provides capabilities to list, create, update, and search knowledge bases and documents using RAG retrieval. Use this skill when the user wants to manage knowledge bases, documents, or search for information programmatically.
karpathy-llm-wiki
Use when building or maintaining a personal LLM-powered knowledge base. Triggers: ingesting sources into a wiki, querying wiki knowledge, linting wiki quality, 'add to wiki', 'what do I know about', or any mention of 'LLM wiki' or 'Karpathy wiki'.
neurolink-guide
Guide for using the NeuroLink SDK and CLI. Invoke when users ask how to use neurolink, integrate AI providers, add MCP tools, configure RAG, set up memory, deploy servers, or work with multimodal content. Covers SDK, CLI, providers, tools, and enterprise features.