html-effectiveness-report

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

A set of HTML formats for recurring engineering documents, including weekly status reports and incident postmortems. A postmortem records what happened, why, what it affected, and what will change.

In plain words
What is it for?
Use it for KPI summaries, shipped-work tables, delivery-rate charts, carryover tracking, incident timelines, root-cause analysis, and action items.
Why use it?
It turns routine updates and incident analysis into structured pages that are easier to scan and follow up on.

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/azhi-ss/html-effectiveness/08-report
Any agent
npx skills add Azhi-ss/html-effectiveness --skill 08-report
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-report

README.md
[![agentmods](https://agentmods.dev/badge/skills/azhi-ss/html-effectiveness/08-report.svg)](https://agentmods.dev/skills/azhi-ss/html-effectiveness/08-report)
Your own site
<a href="https://agentmods.dev/skills/azhi-ss/html-effectiveness/08-report"><img src="https://agentmods.dev/badge/skills/azhi-ss/html-effectiveness/08-report.svg" alt="Measured on agentmods" height="20"></a>
Per session 88 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,569 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.00088 $0.01569
Opus 5 $0.00044 $0.00785
Sonnet 5 $0.00018 $0.00314
Haiku 4.5 $0.00009 $0.00157

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

Security

Grade A, and why

html-effectiveness-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 4d 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/08-report/SKILL.md · 122 lines

How it starts

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

08-report — 周期性报告

"Recurring documents — status updates, post-mortems — benefit most from a bit of structure and color. A small chart and a colored timeline turn something people skim into something they actually read."

何时用

用户说 用哪个范式 模板
"写一份这周的 engineering status" 状态周报 ../../templates/status.html
"周报模板填一下" 同上 同上
"昨天那个 incident 的 postmortem" 事故报告 ../../templates/postmortem.html
"RCA / SEV-2 总结" 同上 同上

范式 8.1 · 状态周报

空间形状:5 段,按"扫一眼 → 细看 → 跟进"顺序

  1. 4 大数字 KPI — 顶部一行卡片,3 秒能看完
  2. Highlights — 3 个 bullet(高亮事件,不是流水账)
  3. Shipped — 表格 (PR / Title / Author / Risk)
  4. Velocity — 7 天柱状图(小图,不喧宾夺主)
  5. Carryover — 三段 in-review / blocked / slipped,用 border-left 颜色区分

关键 CSS

.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.kpi { padding: 20px; border-radius: 12px; background: var(--white);
       border: 1px solid var(--gray-300); }
.kpi .num { font-size: 36px; font-weight: 500; line-height: 1; }
.kpi .label { color: var(--gray-700); font-size: 13px; margin-top: 6px; }
.kpi .delta.up { color: var(--success); }
.kpi .delta.down { color: var(--danger); }

.carryover .item { border-left: 3px solid; padding: 12px 16px;
                   background: var(--white); border-radius: 8px; }
.carryover .in-review { border-left-color: var(--info); }
.carryover .blocked   { border-left-color: var(--warning); }
.carryover .slipped   { border-left-color: var(--gray-500); }

Velocity 柱状图技巧(不需要 Chart.js):

<div class="chart">
  <div class="bar"><div class="col" style="height:0%"  data-v="0"></div><small>Mon</small></div>
  <div class="bar"><div class="col" style="height:25%" data-v="1"></div><small>Tue</small></div>
  <!-- ... -->
</div>
.chart { display: flex; align-items: flex-end; gap: 12px; height: 140px; }
.bar { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.bar .col { width: 100%; max-width: 56px; background: var(--clay);
            border-radius: 4px 4px 0 0; position: relative; }
.bar .col::before { content: attr(data-v); position: absolute;
                    top: -22px; left: 50%; transform: translateX(-50%);
                    font-size: 12px; }

Read the full file on GitHub · 122 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. 4d ago First seen · 122 lines · 88 tokens per session scan A 1385817231de

Subscribe to this mod's changes

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

cinematic-scroll

Build cinematic scroll-driven, 3D-tilt, parallax, and environment-morphing websites — pinned chapter reveals, hero parallax, depth-image figures, hover-tilt cards, background-morphing layouts, release/launch pages, product story pages, or editorial commerce microsites. From a single self-contained scroll section (Mode…

MustBeSimo/cinematic-scroll-skill · 301 tokens

cinematic-scroll

Build cinematic, scroll-driven websites — pinned chapter reveals, multi-depth parallax, 3D tilt, and environment-morphing backgrounds, from a single self-contained HTML section to a full Next.js release site. The motion grammar is the constant; the aesthetic is always the user's.

MustBeSimo/cinematic-scroll-skill · 61 tokens

karpathy-llm-wiki

Use when building or maintaining a personal LLM-powered knowledge base. Triggers: ingesting sources into a wiki, querying wiki knowledge, linting wiki quality, 'add to wiki', 'what do I know about', or any mention of 'LLM wiki' or 'Karpathy wiki'.

Astro-Han/karpathy-llm-wiki · 67 tokens

命理解读师

Skill "命理解读师" from learnwithu/mingli-master, covering 命理解读师 v2, 核心原则, 禁忌, 依赖 and 工作流程.

learnwithu/mingli-master · 189 tokens

os-check-work

ALWAYS invoke this skill when the user asks about work done outside this session - "check work", "check the others", "check other sessions" - or to accept one: "the session is done, check it", "can we merge it" - in any language. You are the receiving party: treat the report as a claim, verify each part against…

kharmanskyi/open-steps · 118 tokens

os-done-or-not

ALWAYS invoke this skill when work wraps up or the user asks how it went - "done or not", "are we done", "what happened", "report" - in any language, and when a Stop hook asks for a session report. Produces a ten-line plain- language report: a lead, a checkmark table, and a verdict - fully done, anything needed from…

kharmanskyi/open-steps · 127 tokens