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/minhlucvan/notebookmd/notebookmd-guidenpx skills add minhlucvan/notebookmd --skill notebookmd-guidegit clone --depth 1 https://github.com/minhlucvan/notebookmdWrote 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/minhlucvan/notebookmd/notebookmd-guide)<a href="https://agentmods.dev/skills/minhlucvan/notebookmd/notebookmd-guide"><img src="https://agentmods.dev/badge/skills/minhlucvan/notebookmd/notebookmd-guide.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.00049 | $0.01934 |
| Opus 5 | $0.00024 | $0.00967 |
| Sonnet 5 | $0.00010 | $0.00387 |
| Haiku 4.5 | $0.00005 | $0.00193 |
Grade A, and why
notebookmd-guide 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.
How it starts
The opening of the file, as written. The whole thing — 236 lines — stays where its author put it; the contents beside it link to each section on GitHub.
notebookmd API Reference Guide
This is the complete API reference for the notebookmd library. Use this when you need
to generate Markdown reports, data analysis, dashboards, or structured documents.
Installation
pip install notebookmd # Core (zero deps)
pip install "notebookmd[pandas]" # + tables, DataFrames, CSV
pip install "notebookmd[plotting]" # + matplotlib charts
pip install "notebookmd[all]" # Everything
Factory
from notebookmd import nb, NotebookConfig
cfg = NotebookConfig(
max_table_rows=30, # Default: 30
float_format="{:.4f}", # Default: "{:.4f}"
)
n = nb("output/report.md", title="Report Title", cfg=cfg)
Text Elements
n.title("Title") # # Title
n.header("Header", divider=False) # ## Header (+ --- if divider=True)
n.subheader("Sub", divider=False) # ### Sub
n.caption("Caption text") # _Caption text_
n.text("Preformatted text") # ```text\nPreformatted text\n```
n.latex(r"\sum_{i=1}^{n} x_i") # $$\sum_{i=1}^{n} x_i$$
n.md("**Bold** and _italic_") # Raw markdown passthrough
n.code("print('hello')", lang="python") # ```python\nprint('hello')\n```
n.divider() # ---
n.write("Any text or value") # Auto-formatted
n.note("Important note") # > **Note:** Important note
Data Display
# Single metric with delta
n.metric("Revenue", "$1.2M", delta="+12%")
n.metric("Churn", "2.1%", delta="-0.3%", delta_color="inverse")
# Multiple metrics in a row
n.metric_row([
{"label": "Revenue", "value": "$1.2M", "delta": "+12%"},
{"label": "Profit", "value": "$340K", "delta": "+8%"},
{"label": "Users", "value": "3,400", "delta": "+200"},
])
# DataFrames and tables
n.table(df, name="Table Title", max_rows=30)
n.dataframe(df, name="DataFrame Title")
n.summary(df, title="Auto Summary") # shape, nulls, numeric stats
# Key-value dictionaries
n.kv({"Key1": "Value1", "Key2": "Value2"}, title="Metrics")
# JSON display
n.json({"key": "value", "nested": {"a": 1}}, expanded=True)
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.
- 3d ago First seen · 236 lines · 49 tokens per session scan A 54c3013fed5c
notebookmd-guide is a skill published in the GitHub repository minhlucvan/notebookmd (10 stars, last pushed 4mo ago), licensed MIT. It adds 49 tokens to every session and 1,934 once invoked, about $0.0002 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
html-artifact-report
Create HTML report artifacts from notes or Markdown with paired JSON manifests for AI-agent audit and reuse.
processing-markdown
Processes Markdown files using mq, a jq-like query language for Markdown. Use when the user mentions Markdown processing, content extraction, document transformation, or mq queries.
okf
Author, maintain, and consume Open Knowledge Format (OKF) knowledge bundles — portable markdown + YAML frontmatter that both humans and agents read. Use when capturing project knowledge (services, APIs, schemas, metrics, runbooks, decisions) into an OKF bundle, when updating one after code or docs change, or when a…
ssotize
Audit and consolidate a fact that's scattered across places into one canonical source, after approval, and replace the rest with references. Use when asked to find duplication, check consistency, locate the source of truth, deduplicate, consolidate, unify, or establish SSOT across artifacts or platforms. Starts…
larksnap-fetch
把飞书/Lark 文档或普通网页抓取并保存到本地,也能编辑用户有权限的飞书文档,并用已登录浏览器执行一次网页搜索。用户要求下载、导出、抓取、写入飞书文档,或联网搜索资料/参考链接时使用本技能,即使没有提到 larksnap。底层通过技能自带 daemon 桥接已登录的 larksnap 浏览器扩展;arXiv 使用独立脚本。.
markdown-exporter
Convert Markdown text to DOCX, PPTX, XLSX, PDF, PNG, SVG, HTML, IPYNB, MD, CSV, JSON, JSONL, XML files, and extract code blocks in Markdown to Python, Bash,JS and etc files.