html-report

html-report is a skill for Claude Code, Codex from 1xiaoyueryuer/boss-hr-agent-toolkit. It costs 159 tokens per session (3,433 once invoked), scanned A, original, MIT.

A tool that turns resume-screening results into a self-contained HTML report. The report shows ranked candidates, five-category scores, reasons, and suggested actions.

In plain words
What is it for?
Use it to render screening_results.json into candidate cards, score bars, tier labels, concerns, highlights, and action recommendations.
Why use it?
It presents screening data in a readable report without requiring external files or dependencies, while skipping fields that are missing.

Skill for Claude CodeCodex

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

Good fit Use it to render screening_results.json into candidate cards, score bars, tier labels, concerns, highlights, and action recommendations.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/1xiaoyueryuer/boss-hr-agent-toolkit/html-report
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 1xiaoyueryuer/boss-hr-agent-toolkit --skill html-report
Clone the repo
git clone --depth 1 https://github.com/1xiaoyueryuer/boss-hr-agent-toolkit

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-report

README.md
[![agentmods](https://agentmods.dev/badge/skills/1xiaoyueryuer/boss-hr-agent-toolkit/html-report/github.svg)](https://agentmods.dev/skills/1xiaoyueryuer/boss-hr-agent-toolkit/html-report)
Your own site
<a href="https://agentmods.dev/skills/1xiaoyueryuer/boss-hr-agent-toolkit/html-report"><img src="https://agentmods.dev/badge/skills/1xiaoyueryuer/boss-hr-agent-toolkit/html-report/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 html-report

Your own site · 80×15
<a href="https://agentmods.dev/skills/1xiaoyueryuer/boss-hr-agent-toolkit/html-report"><img src="https://agentmods.dev/badge/skills/1xiaoyueryuer/boss-hr-agent-toolkit/html-report.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 159 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,433 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00159 $0.03433
Opus 5 $0.00079 $0.01716
Sonnet 5 $0.00032 $0.00687
Haiku 4.5 $0.00016 $0.00343

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

Security

Grade A, and why

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

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/generate_html_report.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

html-report/SKILL.md · 267 lines

How it starts

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

HTML 报告生成(统一方案)

设计核心

  • 通用 schema:接受 resume-screener/scripts/score_resumes.py 输出的 screening_results.json任意岗位都能用
  • LLM 自由填写:candidates[].highlights / concerns / actions[].{background, action, strengths} 由 LLM 决定内容,脚本只负责渲染
  • 字段鲁棒:所有字段 .get() 处理,缺失自动跳过
  • 视觉风格:黑蓝渐变 header + 玻璃质感 meta-item + 三色 stat-card 配色

核心不变量(不要修改)

输入文件 screening_results.json(由 score_resumes.py 产出)
输出文件 *.html(自包含单文件,无外部依赖)
字体栈 Inter, "PingFang SC", "Microsoft YaHei"
主色(header) linear-gradient(135deg, #1a1a2e, #16213e, #0f3460)
背景色 #f5f7fa
卡片圆角 border-radius: 12px
Tier 颜色 推荐 #059669(绿)/ 待定 #d97706(黄)/ 不推荐 #dc2626(红)
进度条颜色 ≥70% 绿 / 50-69% 黄 / <50% 红

工具脚本

scripts/generate_html_report.py唯一渲染脚本)

工具函数(agent 可直接 import):

函数 作用
render(data: dict) → str 输入 screening_results.json 数据,输出 HTML 字符串
bar_color(pct) → str 根据百分比返回进度条颜色(绿/黄/红)
tier_badge(tier) → str 根据 tier 返回徽章 HTML
render_candidate(c, labels, rank) → str 渲染单个候选人卡片
render_action(name, score, body) → str 渲染单个行动建议行

CLI

python generate_html_report.py \
  --input <screening_results.json> \
  --output <report.html> \
  --job-name "<岗位名>" \
  --encrypt-job-id "<BOSS 的 encryptJobId>" \
  --run-id <run_id>

🚨 新接口必传 --encrypt-job-id:与 Step 1/2/3 保持一致。也可以设 env BOSS_HR_ENCRYPT_JOB_ID 作为 fallback。 兼容模式:如果不传,脚本会从 --input 路径里反推 job_name(旧中文目录)作为兜底,但新设计必须显式传,避免与新 job 混目录。

templates/report.html(HTML 模板)

Jinja2 风格模板占位符。当前未使用(脚本直接生成自包含 HTML),保留作为参考。


完整工作流

boss-recommend-downloader/scripts/run_all.py
    list + download 串起来
    → 输出 runs/<run_id>/process/{recommend_geek_ids,new_resumes,failed_resumes,run_summary}.json
    ↓
resume-screener/scripts/score_resumes.py
    LLM 评 4 维度(exp/skill/proj/major)
    + school_tier 强制覆盖 edu
    + 公式重算 total
    + 判定 tier
    → 输出 runs/<run_id>/process/screening_results.json
    ↓
html-report/scripts/generate_html_report.py
    读取 screening_results.json
    → 输出 runs/<run_id>/<run_id>_<岗位名>_简历筛选报告.html(自包含)
        ↑ 文件名含 run_id,永不覆盖历史报告
        ↑ 头部展示 run-badge:🆔 run_id: <run_id> | 🕐 生成时间: ...
    ↓
preview_url 在 IDE 内置浏览器打开

Read the full file on GitHub · 267 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 267 lines · 159 tokens per session scan A 846c9b6d83f2

Subscribe to this mod's changes

html-report is a skill published in the GitHub repository 1xiaoyueryuer/boss-hr-agent-toolkit (46 stars, last pushed 1mo ago), licensed MIT. It adds 159 tokens to every session and 3,433 once invoked, about $0.0008 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-30.

Related

Other skills, from other repositories

cv-builder

This skill enables creation of professional CVs/resumes from structured YAML using rendercv. Define your experience once, generate beautiful PDFs in multiple themes.

claude-office-skills/skills · 4 tokens

resume-modern

Modern minimal resume, single A4 page, ready for print or PDF export.

wolfenazz/YzPzCode · 19 tokens

morph-ppt

Use this skill when the user wants a .pptx with smooth cross-slide animation — PowerPoint Morph transitions, Keynote-style continuous motion, shapes that grow / move / rotate as the slide advances. Trigger on: 'morph', 'morph transition', 'smooth transition', 'continuous animation across slides', 'Keynote-style…

iOfficeAI/OfficeCLI · 169 tokens

officecli-academic-paper

Use this skill to build academic-style .docx output: journal / conference / thesis chapters carrying formal citation style (APA, Chicago, IEEE, MLA), numbered equations, figure & table cross-references, footnotes/endnotes, bibliography, or multi-column journal layout. Trigger on: 'research paper', 'journal paper'…

iOfficeAI/OfficeCLI · 141 tokens

officecli-word-form

Use this skill to create fillable Word forms (.docx) with real Content Controls (SDT) + legacy FormField checkboxes + MERGEFIELD mail-merge placeholders + document protection. Trigger on: 'fillable form', 'form fields', 'content controls', 'SDT', 'word form', 'fill in', 'only editable fields', 'protect document'…

iOfficeAI/OfficeCLI · 224 tokens

officecli

Create, analyze, proofread, and modify Office documents (.docx, .xlsx, .pptx) using the officecli CLI tool. Use when the user wants to create, inspect, check formatting, find issues, add charts, or modify Office documents.

iOfficeAI/OfficeCLI · 56 tokens