report

A tool for creating structured Markdown reports, which are plain-text documents that use simple formatting symbols for headings, tables, and other sections.

In plain words
What is it for?
Use it to create reports, documentation, summaries, writeups, status reports, tables, metrics, code examples, and other saved Markdown documents.
Why use it?
It turns a request for a report or summary into a consistently formatted file with organised sections and supporting details.

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

Made for: Claude Code, Codex.

Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 758 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.00046 $0.00758
Opus 5 $0.00023 $0.00379
Sonnet 5 $0.00009 $0.00152
Haiku 4.5 $0.00005 $0.00076

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

Security

Grade A, and why

report 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 2d 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/report/SKILL.md · 110 lines

How it starts

The opening of the file, as written. The whole thing — 110 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Markdown Report Generator

Generate a structured, professional Markdown report using the notebookmd library.

Input

Report topic: $ARGUMENTS

Instructions

1. Setup

from notebookmd import nb, NotebookConfig

n = nb("dist/report.md", title="<descriptive title>")

2. Report Structure

Adapt the structure to the topic. Common patterns:

Executive Summary Pattern:

n.section("Executive Summary")
n.metric_row([...])  # Top-line KPIs
n.write("Brief overview...")

n.section("Background")
n.write("Context and motivation...")

n.section("Methodology")
with n.expander("Details"):
    n.write("Step-by-step approach...")

n.section("Results")
n.table(results_df, name="Key Results")
n.kv(metrics_dict, title="Performance Metrics")

n.section("Conclusion")
n.success("Summary of outcomes")

Technical Report Pattern:

n.section("Overview")
n.kv(config_dict, title="Configuration")

n.section("Implementation")
n.code(code_snippet, lang="python")
n.note("Key technical detail...")

n.section("Results")
n.table(benchmarks_df, name="Benchmarks")

n.section("Next Steps")
n.write("1. Item one\n2. Item two")

Status Report Pattern:

n.section("Status Overview")
n.metric_row([
    {"label": "Complete", "value": "73%", "delta": "+5%"},
    {"label": "On Track", "value": "12/15"},
    {"label": "Blocked", "value": "2"},
])

n.section("Completed This Period")
n.write("- Task 1\n- Task 2")

n.section("In Progress")
n.progress(0.73, "Overall completion")
n.write("Current work items...")

n.section("Risks & Blockers")
n.warning("Risk description...")
n.error("Blocker description...")

3. Available Widgets

Text: n.title(), n.header(), n.subheader(), n.write(), n.md(), n.caption(), n.code(), n.latex(), n.text()

Data: n.metric(), n.metric_row(), n.table(), n.dataframe(), n.kv(), n.json(), n.summary()

Status: n.success(), n.error(), n.warning(), n.info(), n.progress(), n.badge()

Read the full file on GitHub · 110 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. 2d ago First seen · 110 lines · 46 tokens per session scan A 51970695f0f9

Subscribe to this mod's changes

report is a skill published in the GitHub repository minhlucvan/notebookmd (10 stars, last pushed 4mo ago), licensed MIT. It adds 46 tokens to every session and 758 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

agent-evaluation-reporting

Use when summarizing agent evaluations where autonomous, assisted, failed, timed-out, or invalid outcomes must remain distinct and comparable.

sickn33/agentic-awesome-skills · 31 tokens

markstream-react

Integrate the beta markstream-react package into a React 18+ or Next app. Use when Codex needs to add the React renderer, choose the root, next, or server entrypoint, import CSS correctly, choose between content and nodes, keep client boundaries safe, add renderer-local streamingComponents or htmlComponents, use…

Simon-He95/markstream-vue · 94 tokens

nba

Read the live cycle state and return the single highest-leverage next best action, not a menu. Use when a project is between phases, the author asks what to do next, too many valid threads are open, or the work needs re-entry into frame, build, drive, re0-memo, hate, re0-work, or ship.

LilMGenius/paperthin · 72 tokens

review-validation

Validate review findings from specialist agents by reading the actual repo file content and checking each finding for accuracy, applicability, and false positives.

cloudflare/cloudflare-docs · 29 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