notebookmd-guide

notebookmd-guide is a skill for Claude Code, Codex from minhlucvan/notebookmd. It costs 49 tokens per session (1,934 once invoked), scanned A, original, MIT.

A reference guide for the notebookmd Python library, which creates Markdown reports, tables, charts, and other structured documents.

In plain words
What is it for?
Use it when writing code that generates reports, data analyses, dashboards, tables, charts, or formatted documents with notebookmd.
Why use it?
It helps an agent find the correct library methods and function signatures instead of guessing how the API works.

Skill for Claude CodeCodex

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 skills/minhlucvan/notebookmd/notebookmd-guide
Any agent
npx skills add minhlucvan/notebookmd --skill notebookmd-guide
Clone the repo
git clone --depth 1 https://github.com/minhlucvan/notebookmd

Made for: Claude Code, Codex.

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 notebookmd-guide

README.md
[![agentmods](https://agentmods.dev/badge/skills/minhlucvan/notebookmd/notebookmd-guide.svg)](https://agentmods.dev/skills/minhlucvan/notebookmd/notebookmd-guide)
Your own site
<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>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,934 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.00049 $0.01934
Opus 5 $0.00024 $0.00967
Sonnet 5 $0.00010 $0.00387
Haiku 4.5 $0.00005 $0.00193

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

Security

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.

.claude/skills/notebookmd-guide/SKILL.md · 236 lines

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)

Read the full file on GitHub · 236 lines

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 · 236 lines · 49 tokens per session scan A 54c3013fed5c

Subscribe to this mod's changes

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.

Related

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.

DeepCogNeural/html-artifact-report-skill · 24 tokens

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.

harehare/mq · 36 tokens

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…

scaccogatto/okf-skills · 127 tokens

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…

LilMGenius/paperthin · 78 tokens

larksnap-fetch

把飞书/Lark 文档或普通网页抓取并保存到本地,也能编辑用户有权限的飞书文档,并用已登录浏览器执行一次网页搜索。用户要求下载、导出、抓取、写入飞书文档,或联网搜索资料/参考链接时使用本技能,即使没有提到 larksnap。底层通过技能自带 daemon 桥接已登录的 larksnap 浏览器扩展;arXiv 使用独立脚本。.

AmbroseX/larksnap · 111 tokens

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.

bowenliang123/markdown-exporter · 57 tokens