html-effectiveness-review

html-effectiveness-review is a skill for Claude Code, Codex from Azhi-ss/html-effectiveness. It costs 96 tokens per session (1,713 once invoked), scanned A, original, MIT.

A set of HTML-based formats for reviewing code changes, writing pull-request descriptions, and showing how unfamiliar modules and call paths fit together.

In plain words
What is it for?
Use it for pull-request reviews, pull-request write-ups, module diagrams, and explanations of flows such as authentication or synchronization.
Why use it?
It makes code changes and program flow easier to inspect visually than in a long plain-text explanation.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it for pull-request reviews, pull-request write-ups, module diagrams, and explanations of flows such as authentication or synchronization.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/azhi-ss/html-effectiveness/02-review
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 Azhi-ss/html-effectiveness --skill 02-review
Clone the repo
git clone --depth 1 https://github.com/Azhi-ss/html-effectiveness

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 html-effectiveness-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/azhi-ss/html-effectiveness/02-review.svg)](https://agentmods.dev/skills/azhi-ss/html-effectiveness/02-review)
Your own site
<a href="https://agentmods.dev/skills/azhi-ss/html-effectiveness/02-review"><img src="https://agentmods.dev/badge/skills/azhi-ss/html-effectiveness/02-review.svg" alt="Measured on agentmods" height="20"></a>
Per session 96 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,713 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 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.1 $0.00096 $0.01713
Opus 5 $0.00048 $0.00856
Sonnet 5 $0.00019 $0.00343
Haiku 4.5 $0.00010 $0.00171

Measured 7d ago against content hash 832808096af2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

html-effectiveness-review 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 7d 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.

skills/02-review/SKILL.md · 139 lines

How it starts

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

02-review — 代码评审与理解

"Diffs and call-graphs are spatial information; markdown flattens them. Let the agent render the change as an annotated diff, draw the module as boxes and arrows, or write the PR description your reviewers actually want."

何时用

用户说 用哪个范式 模板
"review this PR / 评审一下 #312" PR 评审 (reviewer 视角) ../../templates/diff.html
"帮我写 PR 描述 / write a PR writeup" PR 写作 (author 视角) ../../templates/pr.html
"X 在这个 repo 怎么工作 / 调用栈是什么" 模块图 自建(见下)
"解释一下 auth flow / sync 是怎么转的" 模块图 同上

范式 2.1 · PR 评审(reviewer 视角)

空间形状

  • 顶部:一句话总结 + 文件风险地图(每文件一个圆点,颜色=风险,大小=改动量)
  • 文件列表:每文件折叠区块;标题含 risk badge + diff 行数;展开看带行号 diff
  • 行号 diff 必须等宽对齐

风险标签 3 档(不要再细分,用户记不住):

  • safe — 纯加法 / 类型扩展 / 测试 → 绿色
  • worth a look — 行为微变 / 重构 → 黄色
  • needs attention — 关键路径 / 新抽象 / 易错点 → 红色

HTML 骨架

<header class="pr-summary">
  <h1>PR #247 — Review Summary</h1>
  <p>[一句话: what this PR does]</p>
</header>

<section class="risk-map">
  <h2>Risk map</h2>
  <svg viewBox="0 0 600 120">
    <g><circle cx="60"  cy="60" r="14" class="needs-attn" />
       <text x="60" y="95" text-anchor="middle">useOptimisticTasks.ts</text></g>
    <g><circle cx="160" cy="60" r="20" class="worth" />
       <text x="160" y="95" text-anchor="middle">TaskList.tsx</text></g>
    <!-- ... 圆点大小 = LOC log;位置随便排但保持视觉密度 -->
  </svg>
</section>

<section class="files">
  <details open>
    <summary>
      <code>src/hooks/useOptimisticTasks.ts</code>
      <span class="badge danger">needs attention</span>
      <span class="muted">+58 −0</span>
    </summary>
    <pre class="diff"><div class="line added"><span class="ln">12</span><span>+ ...</span></div></pre>
  </details>
</section>

关键 CSS(diff 行号):

.diff { font-family: var(--font-mono); font-size: 12.5px; line-height: 1.55; }
.diff .line { display: grid; grid-template-columns: 56px 1fr; gap: 0; }
.diff .ln { color: var(--gray-500); padding: 0 12px; text-align: right;
            background: var(--gray-100); user-select: none; }
.diff .added   { background: rgba(120, 140, 93, 0.12); }
.diff .removed { background: rgba(176, 74, 74, 0.10); }

Read the full file on GitHub · 139 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. 7d ago First seen · 139 lines · 96 tokens per session scan A 832808096af2

Subscribe to this mod's changes

html-effectiveness-review is a skill published in the GitHub repository Azhi-ss/html-effectiveness (5 stars, last pushed 3mo ago), licensed MIT. It adds 96 tokens to every session and 1,713 once invoked, about $0.0005 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

skill-stocktake

Audit installed Claude skills for quality and surface Keep/Improve/Update/Retire/Merge verdicts. Use when the user says "audit my skills", "stocktake", "review my skills", "which skills should I retire or merge", "do a quality pass over my skills", or "/skill-stocktake". NOT for creating or improving a single skill…

shimo4228/skill-stocktake · 102 tokens

code-review-excellence

Master effective code review practices to provide constructive feedback, catch bugs early, and foster knowledge sharing while maintaining team morale. Use when reviewing pull requests, establishing review standards, or mentoring developers.

wshobson/agents · 42 tokens

multi-reviewer-patterns

Coordinate parallel code reviews across multiple quality dimensions with finding deduplication, severity calibration, and consolidated reporting. Use this skill when organizing multi-reviewer code reviews, calibrating finding severity, or consolidating review results.

wshobson/agents · 49 tokens

refactor

Guides a refactor, cleanup, or restructure with the right decomposition. Use when the user asks to refactor, simplify, extract, or modernize code.

code-yeongyu/oh-my-openagent · 36 tokens

pre-publish-review

Nuclear-grade 12-agent pre-publish release gate. Runs /get-unpublished-changes to detect all changes since last npm release, spawns up to 10 ultrabrain agents for deep per-change analysis, invokes /review-work (orchestrator manual QA plus one gate reviewer) for holistic review, and 1 oracle for overall release…

code-yeongyu/oh-my-openagent · 161 tokens

work-with-pr

Full PR lifecycle in a fresh task-owned git worktree: implement via the ulw-loop skill with mandatory evidence-bound manual QA → reviewer-readable English PR → verification loop (CI + Cubic, where Cubic is skipped only when its quota is exhausted) → merge by default → worktree cleanup. Decomposes one task into the…

code-yeongyu/oh-my-openagent · 211 tokens