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 agentmods add skills/anthonysuherli/br8n/notesnpx skills add anthonysuherli/br8n --skill notesgit 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/notes)<a href="https://agentmods.dev/skills/anthonysuherli/br8n/notes"><img src="https://agentmods.dev/badge/skills/anthonysuherli/br8n/notes.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 | $0.00086 | $0.00853 |
| Opus 5 | $0.00043 | $0.00426 |
| Sonnet 5 | $0.00017 | $0.00171 |
| Haiku 4.5 | $0.00009 | $0.00085 |
Grade A, and why
notes 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 4d 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 — 69 lines — stays where its author put it; the contents beside it link to each section on GitHub.
br8n — Notes (steer the session-note policy)
br8n writes a session note at the end of every conversation
(see ../_shared/session-note.md — fired by the Stop
hook, best-effort, never blocking). What goes into that note is governed by a per-KB
policy: a section template (## Decisions, ## Changes, …) plus a free-text
steer ("emphasize architecture, skip dependency bumps"). This skill is how you read
and shape that policy. It does not write a note itself — it only changes the rules
the next session note follows.
Step 0 — Resolve target
project = git repo basename, kb = git branch, project_path = repo root
(see ../_shared/preamble-first.md):
basename "$(git rev-parse --show-toplevel)" # project
git branch --show-current # kb
git rev-parse --show-toplevel # project_path
No prior tap needed — policy read/write is independent of KB coverage.
Mode select — branch on the args
| Invocation | Mode | Do |
|---|---|---|
/br8n:notes (no args) |
Show | Step A — print the current policy |
/br8n:notes <free text> |
Steer | Step B — set the steer to that text |
/br8n:notes --wizard |
Wizard | Step C — run the guided co-design |
Step A — Show the current policy
Call
mcp__plugin_br8n_br8n__br8n_notes_policy_get(project, kb, project_path).
It returns {policy: {sections: [{name, enabled}], steer}, project, kb} (the default
policy if none is set yet). Render it readably:
Note policy —
<project>/<kb>Sections the next note will use:
<name>— enabled / disabled Steer:<steer, or "(none)">
Then mention the two ways to change it: pass free text to set a steer, or
--wizard to redesign the section template.
Step B — Set the steer from free text
The args are the new steer (e.g. /br8n:notes focus on architecture, skip dep bumps).
br8n_notes_policy_get(project, kb, project_path)— fetch the current policy.- Keep its
sectionsexactly as-is; replacesteerwith the user's text. mcp__plugin_br8n_br8n__br8n_notes_policy_set(project, kb, project_path, policy=<updated>). On{ok: false, errors}show the errors, fix, and retry — nothing is saved until valid. On{ok: true}confirm: echo the new steer and the (unchanged) section list so the user sees exactly what the next session note will honor.
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.
- 4d ago First seen · 69 lines · 86 tokens per session scan A 030348ea0e16
notes is a skill published in the GitHub repository anthonysuherli/br8n (1 stars, last pushed 1mo ago), licensed MIT. It adds 86 tokens to every session and 853 once invoked, about $0.0004 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
book-to-skill
Converts books and documents (PDF, EPUB, DOCX, HTML, Markdown, plain text, RTF, MOBI/AZW with Calibre) into structured agent skills, extracting frameworks, mental models, principles, techniques, and anti-patterns. Use when the user wants to study a document through GitHub Copilot CLI, Amp, Claude Code, or Hermes…
acontext-installer
Install Acontext, Login & Init Acontext Project, Add Skill Memory to Agent.
doc-translator
将 PDF 格式或 Web Page 格式的源文档转换成保持原排版格式的 Markdown 格式精译中文文档。.
batch-processor
Manage large document processing by splitting into batches and coordinating the full translation workflow (extraction, translation, formatting). Use when handling documents larger than 30 pages, 60 paragraphs, or 6000 words.
markdown-formatter
Format and optimize Markdown content, with special support for post-translation processing. Use when fixing Markdown syntax, adjusting layout, ensuring formatting consistency, or optimizing translated documents.
pdf-reader
Extract text, images, tables, and formulas from PDF documents and convert them to Markdown format while preserving original structure. Use when processing PDF files, extracting content, or converting PDF to Markdown.