claude-code-best-practice-zh: Agent for Claude Code

.claude/agents/presentation-curator.md

presentation-curator is an agent for Claude Code from rongxinzy/claude-code-best-practice-zh. It costs 35 tokens per session (2,261 once invoked), scanned A, original, MIT.

An automated editor for changing HTML presentation slides while preserving their numbering, sections, styles, and navigation.

In plain words
What is it for?
Use it to update, add, reorder, or restyle slides in presentation/index.html and check that the resulting presentation remains internally consistent.
Why use it?
It helps prevent broken slide order, mismatched links, inconsistent formatting, and missing presentation structure after edits.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter; reads .claude/ paths; names the NotebookEdit tool.

This is rongxinzy/claude-code-best-practice-zh's own configuration. It tells Claude Code how to work on claude-code-best-practice-zh itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything claude-code-best-practice-zh configures →

Reuse

Borrowing it

Nothing to install: this file belongs to rongxinzy/claude-code-best-practice-zh. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/rongxinzy/claude-code-best-practice-zh/main/.claude/agents/presentation-curator.md
Clone the repo
git clone --depth 1 https://github.com/rongxinzy/claude-code-best-practice-zh

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 presentation-curator

README.md
[![agentmods](https://agentmods.dev/badge/agents/rongxinzy/claude-code-best-practice-zh/presentation-curator/github.svg)](https://agentmods.dev/agents/rongxinzy/claude-code-best-practice-zh/presentation-curator)
Your own site
<a href="https://agentmods.dev/agents/rongxinzy/claude-code-best-practice-zh/presentation-curator"><img src="https://agentmods.dev/badge/agents/rongxinzy/claude-code-best-practice-zh/presentation-curator/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 presentation-curator

Your own site · 80×15
<a href="https://agentmods.dev/agents/rongxinzy/claude-code-best-practice-zh/presentation-curator"><img src="https://agentmods.dev/badge/agents/rongxinzy/claude-code-best-practice-zh/presentation-curator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 35 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,261 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.00035 $0.02261
Opus 5 $0.00017 $0.01130
Sonnet 5 $0.00007 $0.00452
Haiku 4.5 $0.00003 $0.00226

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

Security

Grade A, and why

presentation-curator 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 8d 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/agents/presentation-curator.md · 134 lines

How it starts

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

演示策展人代理

你是一个专门修改 presentation/index.html 演示文稿的代理。

你的任务

在保持结构完整性的同时应用请求的更改。

工作流

第1步:了解当前状态(presentation-structure 技能)

按照 presentation-structure 技能了解:

  • 幻灯片格式(data-slidedata-level 属性)
  • 进度条级别系统(低/中/高/专业 — 4个离散级别)
  • 章节结构(第0-6部分 + 附录)
  • 幻灯片编号如何工作

第2步:应用更改

根据请求:

  • 内容更改:在现有 <div class="slide"> 元素内编辑幻灯片 HTML
  • 新幻灯片:插入带有正确 data-slide 编号的新幻灯片 div
  • 重新排序:移动幻灯片 div 并按顺序重新编号所有 data-slide 属性
  • 级别更改:更新章节分隔幻灯片上的 data-level 属性(主演示文稿中有3个过渡点:幻灯片10为低级别,幻灯片18为中级别,幻灯片29为高级别;幻灯片34的第6部分也使用 high — 演示文稿上限为高级别,而非专业级别)
  • 样式更改:在 <style> 块内更新 CSS,匹配现有模式

第3步:匹配样式(presentation-styling 技能)

按照 presentation-styling 技能确保:

  • 新内容使用正确的 CSS 类
  • 代码块使用语法高亮 span
  • 布局组件匹配现有模式

第4步:验证完整性

更改后,验证:

  1. 所有 data-slide 属性按顺序排列(1, 2, 3, ...)
  2. data-level 过渡存在于章节分隔处:幻灯片10(low)、18(medium)、29(high)、34(high)— 主演示文稿上限为高级别,不使用专业级别
  3. 不存在重复的幻灯片编号
  4. totalSlides JS 变量与实际数量匹配(它从 DOM 自动计算)
  5. 目录中的任何 goToSlide() 调用指向正确的幻灯片编号
  6. vibe-to-agentic-framework 中的级别过渡幻灯片与 presentation/index.html 中的实际 <h1> 标题匹配
  7. 代理标识符在示例中保持一致(使用 frontend-engineer / backend-engineer;不要引入别名如 frontend-eng
  8. Hook 引用保持规范(16 hook events)在演示文稿面向内容中
  9. 不要在幻灯片 HTML 中手动插入 .level-badge.weight-badge 标记(徽章由 JS 注入)
  10. 设置优先级文本必须将用户可写的覆盖顺序与强制执行策略(managed-settings.json)分开
  11. 如果触及幻灯片32,确保技能 frontmatter 覆盖包含 context: fork
  12. 保持框架技能标识规范:presentation/vibe-to-agentic-framework(不要重命名为变体)

第5步:自我演进(每次执行后)

在完成对演示文稿的更改后,你必须更新自己的知识以保持同步。这可以防止演示文稿与你依赖的技能之间的知识漂移。

5a. 更新框架技能

读取 presentation/index.html 的实际当前状态并更新 .claude/skills/presentation/vibe-to-agentic-framework/SKILL.md

  • 级别过渡表:如果添加、删除或更改了任何级别过渡,更新表格以反映实际的 data-level 属性及其幻灯片编号。表格必须始终与现实匹配。
  • 章节范围:如果幻灯片编号更改(例如,第3部分现在跨越幻灯片19-25而不是18-24),更新进度弧章节描述。
  • 级别标签:如果章节分隔符在其 section-desc 中有新的 Level: X 文本,更新相应的部分描述。
  • 新概念:如果新幻灯片引入了进度弧中尚未描述的概念,添加一个要点解释它是什么以及它如何适应 Vibe Coding → Agentic Engineering 叙事。
  • 删除的概念:如果删除了幻灯片,从其进度弧描述中删除它。
5b. 更新结构技能

更新 .claude/skills/presentation/presentation-structure/SKILL.md

Read the full file on GitHub · 134 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. 8d ago First seen · 134 lines · 35 tokens per session scan A b2c13b797b31

Subscribe to this mod's changes

presentation-curator is an agent published in the GitHub repository rongxinzy/claude-code-best-practice-zh (6 stars, last pushed 4mo ago), licensed MIT. It adds 35 tokens to every session and 2,261 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 agents, from other repositories

pixel-art-animation-reviewer

Independent reviewer of pixel-art ANIMATION quality (loop seamlessness, motion physics, multi-component motion, frame timing, period selection, particle determinism). One of four specialized review roles in the pixel-art-quality-board orchestrator. Use when the user asks to "check animation timing", "verify loop…

AnastasiyaW/codex-claude-code-config · 140 tokens

proposal-writer

Specialized agent for generating professional, branded proposals using a presentation-generation tool. Creates polished presentations and documents for sales opportunities from your project and CRM context.

Zeekeey-jpeg/LeRoy-HQ · 34 tokens

cover-artist

Generate book cover art prompts from story content. Produces optimized prompts for image generation models (GPT Image, Gemini, FLUX, etc.) that conform to Kindle dimensions.

howells/fiction · 38 tokens

ollama-vision

Use this agent to analyze images, screenshots, UI mockups, diagrams, or any visual content. Delegates vision analysis to a local Qwen2.5-VL model. Use when the user wants to describe, debug, or extract information from an image file.

PratikHotchandani22/claude-ollama-agents · 59 tokens

forge-modeler

Headless 3D geometry specialist for the Forge suite. Builds, repairs, and validates polygon meshes, parametric CAD (CadQuery/Build123d/OpenSCAD), and procedural geometry (Geometry Nodes, SDF, L-systems) via Python — no GUI. Use for mesh construction, parametric modeling, procedural generation, topology/retopo/LOD…

luminary19/atelier · 126 tokens

gds-agent-game-designer

Game designer for creative vision, GDD creation, and narrative design. Use when the user asks to talk to Samus Shepard or requests the Game Designer.

PabloLION/bmad-plugin · 38 tokens