render-html

render-html is a skill for Claude Code from wanshuiyin/ARIS-in-AI-Offer. It costs 132 tokens per session (4,932 once invoked), scanned A, a copy of render-html, MIT.

A converter that turns research documents and structured notes into a single HTML page for people to read in a web browser. The source Markdown remains available as the editable record.

In plain words
What is it for?
It is for rendering academic reviews, idea reports, paper plans, research wikis, and similar ARIS documents as standalone web pages.
Why use it?
It makes reports, reviews, plans, and research summaries easier to read than plain Markdown while preserving the original source.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions Claude Code; mentions Codex.

Good fit It is for rendering academic reviews, idea reports, paper plans, research wikis, and similar ARIS documents as standalone web pages.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/wanshuiyin/aris-in-ai-offer/render-html
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.

Any agent
npx skills add wanshuiyin/ARIS-in-AI-Offer --skill render-html
Clone the repo
git clone --depth 1 https://github.com/wanshuiyin/ARIS-in-AI-Offer

Made for: Claude Code.

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 render-html

README.md
[![agentmods](https://agentmods.dev/badge/skills/wanshuiyin/aris-in-ai-offer/render-html/github.svg)](https://agentmods.dev/skills/wanshuiyin/aris-in-ai-offer/render-html)
Your own site
<a href="https://agentmods.dev/skills/wanshuiyin/aris-in-ai-offer/render-html"><img src="https://agentmods.dev/badge/skills/wanshuiyin/aris-in-ai-offer/render-html/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.

agentmods 80×15 button for render-html

Your own site · 80×15
<a href="https://agentmods.dev/skills/wanshuiyin/aris-in-ai-offer/render-html"><img src="https://agentmods.dev/badge/skills/wanshuiyin/aris-in-ai-offer/render-html.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 132 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,932 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 88% copy Near-identical to another mod 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.1 $0.00132 $0.04932
Opus 5 $0.00066 $0.02466
Sonnet 5 $0.00026 $0.00986
Haiku 4.5 $0.00013 $0.00493

Measured 11d ago against content hash 1f3b5af6dc8b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

render-html 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 11d 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.

Origin

This is a copy

88% identical to render-html — 75 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/render-html/SKILL.md · 294 lines

How it starts

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

/render-html: Markdown → single-file HTML for human reading

Markdown is for writers. HTML is for readers. ARIS workflow nodes write Markdown (canonical, audit-trail-friendly, machine-parseable). /render-html turns selected artifacts into a polished single-file HTML view for the human who actually has to read them. The Markdown stays the source of truth.

When to use this skill

Use /render-html for ARIS artifacts that have a real human reader:

Artifact Why HTML helps Template
idea-stage/IDEA_REPORT.md Ranked ideas + pilot signal + scores feel like a decision dashboard, not a flat list academic
review-stage/AUTO_REVIEW.md (+ REVIEW_STATE.json) Round-by-round score progression + weakness status; pass --state to embed the JSON academic
paper/KILL_ARGUMENT.md (+ KILL_ARGUMENT.json) Per-point attack/defense with <details> Q&A cards + red/yellow/green callouts academic
research-wiki/SUMMARY.md (or research-wiki/index.md) Cross-entity cockpit: papers / ideas / experiments / claims at a glance dashboard
PAPER_PLAN.md (optional) Claims-evidence matrix renders better as a polished table than raw MD academic
RESUBMIT_REPORT.{md,json} (optional) 7-state failure-mode ledger academic or dashboard

Do NOT use for:

  • LaTeX paper output — the final reader-facing artifact is PDF, not HTML.
  • SKILL.md files — those are internal LLM-facing protocol.
  • .aris/traces/* review traces — forensic debug, not human display.
  • Every Markdown file in your project — only artifacts that benefit from sticky TOC, callouts, math, or score progressions.

Core invariants

  • MD / JSON is canonical, HTML is generated view. Edit the source, then re-render. Do not hand-edit the HTML.
  • Cross-model review at the artifact boundary (ARIS invariant). Academic-template HTML — used for the artifacts humans actually read (IDEA_REPORT, AUTO_REVIEW, KILL_ARGUMENT, PAPER_PLAN) — is reviewed by a fresh cross-family Codex thread before being claimed as a finished view. Dashboard-template HTML (cockpit / debug views) skips review by default but accepts --review to force it. See § HTML Review Gate below.
  • Drift detection. Every rendered HTML embeds the source path, SHA256, and generation timestamp in <meta> tags AND in the visible page header. If the HTML and source diverge, the meta tells you which version of the source produced it.
  • Single-file output. No build system, no separate CSS, no node_modules. Just one .html.
  • CDN-friendly default, --offline fallback. MathJax 3 and highlight.js load from cdn.jsdelivr.net by default. Pass --offline to skip both — math will appear as raw $x$, code blocks won't get syntax highlighting, but everything stays readable.
  • Pure stdlib helper. render_html.py uses only re, html, hashlib, json, datetime, pathlib, argparse, sys. No pip install required.
  • Defense-in-depth XSS sanitization. The helper strips <script>/<style>/<iframe>/<object>/<embed>/<form>/<input>/<button>/<link>/<meta>/<base> tags, all on* event-handler attributes (onclick, onload, …), and rewrites javascript:/vbscript:/data: href/src/action schemes to #blocked-unsafe-url:. ARIS workflow artifacts should not contain these in the first place, but the sanitizer is the safety net in case an LLM hallucinates one. Markdown text content is HTML-escaped separately and never reaches the sanitizer.

Read the full file on GitHub · 294 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. 11d ago First seen · 294 lines · 132 tokens per session scan A 1f3b5af6dc8b

Subscribe to this mod's changes

render-html is a skill published in the GitHub repository wanshuiyin/ARIS-in-AI-Offer (473 stars, last pushed today), licensed MIT. It adds 132 tokens to every session and 4,932 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. It is 88% identical to render-html, differing in 75 lines, and is treated as a copy.

Related

Other skills, from other repositories

docx

Read, edit, or create Microsoft Word .docx files. Trigger this skill whenever the user mentions a Word document, .docx file, contract, report, brief, memo, or asks to extract text, modify an existing doc, generate one from a brief, or audit tracked changes. Three execution paths: text-and-structure extraction…

opensquilla/opensquilla · 111 tokens

pdf-toolkit

Structured .pdf operations: extract text/tables, merge pages from multiple PDFs, split a PDF by page ranges, fill PDF form fields, and generate fresh PDFs from JSON. Trigger when the user wants programmatic PDF work without natural-language rewriting — examples: pull tables from a report, combine three PDFs, extract…

opensquilla/opensquilla · 127 tokens

xlsx

Read, edit, or create Microsoft Excel .xlsx workbooks. Trigger this skill whenever the user mentions a spreadsheet, .xlsx file, workbook, sheet, formula, pivot table, or asks to extract tabular data, modify a sheet, or build a workbook from rows. Three execution paths: structured inspection, in-place cell edits, and…

opensquilla/opensquilla · 108 tokens

nano-pdf

Edit PDFs with natural-language instructions using the nano-pdf CLI.

opensquilla/opensquilla · 17 tokens

patent-application

A patent-application document workflow that turns supplied invention materials into claims, a description, an abstract, and black-and-white drawings. It can also produce Markdown and Word files.

handsomestWei/patent-disclosure-skill · 95 tokens

extract-entities

Extract people, organizations, dates, amounts, or custom labels from a document through the connected Superlinked MCP edge, returning a compact table instead of reading the full document into context. Use when the user asks to list, extract, or tabulate entities from a file.

superlinked/sie · 58 tokens