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.
/plugin marketplace add z29k/notabene/plugin install notabeneWrote 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/z29k/notabene/notabene-authoring)<a href="https://agentmods.dev/skills/z29k/notabene/notabene-authoring"><img src="https://agentmods.dev/badge/skills/z29k/notabene/notabene-authoring/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.
<a href="https://agentmods.dev/skills/z29k/notabene/notabene-authoring"><img src="https://agentmods.dev/badge/skills/z29k/notabene/notabene-authoring.svg" alt="Reviewed on agentmods" width="80" 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.00168 | $0.02472 |
| Opus 5 | $0.00084 | $0.01236 |
| Sonnet 5 | $0.00034 | $0.00494 |
| Haiku 4.5 | $0.00017 | $0.00247 |
Grade A, and why
notabene-authoring 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 10d 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 — 170 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Authoring notabene docs — the rendering palette
What actually renders in a notabene site, so you can write a complete doc with every tool available and nothing that silently degrades to plain text. Docs are plain files in the repo (Markdown/MDX), rendered by the notabene renderer (Astro + GFM + Shiki + Mermaid).
Run every CLI command shown below through the plugin forwarder —
node "${CLAUDE_PLUGIN_ROOT}/bin/nb.mjs" <cmd> --root <repo-root> — never npx notabene
(unscoped: not our package).
First: know the format
Read format in notabene.config.mjs (or run npx -y @z29k/notabene@latest doctor --json).
It decides the pipeline:
commonmark(theinitdefault) — globs.md+.markdown, lenient CommonMark/GFM, no MDX.<,{,Promise<T>, raw HTML, GFM tables all render without a crash. Simplest.mdx— globs.md+.mdx..mdstays lenient;.mdxis strict (JSX/expressions): a stray{or<outside a code fence is a build error.
Everything below works in both formats. The MDX-only extras (components/expressions) are called out at the end.
The palette (all verified to render)
- Prose + CommonMark: headings, lists,
**bold**,_italic_,> blockquotes,---rules, inline`code`, links. - GFM: tables, task lists (
- [ ] todo/- [x] done),~~strikethrough~~, autolinks, footnotes (text[^1]…[^1]: note). - Code blocks with syntax highlighting — fenced with a language, highlighted by Shiki
(
github-darkunless the site sets its own code theme, soft-wrap on). Any Shiki-supported language:```ts export const x: number = 1; ``` - Mermaid diagrams — see the next section (the reason this palette exists).
- Inter-doc links: link between docs with relative
.md/.mdxpaths ([see setup](../guide/setup.md)) — they're auto-rewritten to site routes. External/absolute/ anchor links are left as-is. - Images: standard Markdown
(also good for embedding a pre-rendered SVG — see MCD below). - Headings drive the page: the first
# H1becomes the page title (unless frontmattertitleoverrides it — see Page metadata below), and headings build the table of contents + anchor links. Use one H1 per page.
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.
- 10d ago First seen · 170 lines · 168 tokens per session scan A ed9062022f80
notabene-authoring is a skill published in the GitHub repository z29k/notabene (5 stars, last pushed 28d ago), licensed MIT. It adds 168 tokens to every session and 2,472 once invoked, about $0.0008 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
meta-tags-optimizer
Optimize title tags, meta descriptions, Open Graph, and Twitter cards for maximum click-through rate. Generates multiple A/B test variations with character counting and SERP preview. Use when asked to "optimize title tag", "write meta description", "improve CTR", "Open Graph tags", "fix my meta tags", "social media…
google-ads-audit
Google Ads account audit and business context setup. Run this first — it gathers business information, analyzes account health, and saves context that all other ads skills reuse. Trigger on "audit my ads", "ads audit", "set up my ads", "onboard", "account overview", "how's my account", "ads health check", "what should…
sxo
Search Experience Optimization (SXO) — the bridge between SEO and UX/CRO. Audits the full journey from the SERP click to the on-page goal: SERP click-through factors (title/meta/rich results that win the click), then post-click experience signals that keep users and drive conversions — above-the-fold relevance and…
elixir-idioms
OTP/BEAM patterns and Elixir idioms — GenServer, Supervisor, Task, Registry, pattern matching, with chains, pipes. Use when designing processes or debugging BEAM issues.
security
Enforce Elixir/Phoenix security — auth, OAuth, sessions, CSRF, XSS, SQL injection, input validation, secrets. Use when editing auth files, login flows, RBAC, or API keys.
tidewave-integration
Tidewave MCP runtime tools — debugging, smoke testing, live state inspection, SQL queries, hex docs. Use when evaluating code in a running Phoenix app.