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

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

presentation-structure is a skill for Claude Code from rongxinzy/claude-code-best-practice-zh. It costs 24 tokens per session (1,104 once invoked), scanned A, original, MIT.

A set of rules for structuring a single-file HTML presentation, including slide order, section levels, and the progress bar.

In plain words
What is it for?
Use it when adding or reviewing slides, title pages, section breaks, level transitions, and progress-bar behavior.
Why use it?
It keeps slide navigation and the presentation's four-level journey indicator consistent.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

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/skills/presentation/presentation-structure/SKILL.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-structure

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/rongxinzy/claude-code-best-practice-zh/presentation-structure"><img src="https://agentmods.dev/badge/skills/rongxinzy/claude-code-best-practice-zh/presentation-structure.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 24 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,104 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.00024 $0.01104
Opus 5 $0.00012 $0.00552
Sonnet 5 $0.00005 $0.00221
Haiku 4.5 $0.00002 $0.00110

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

Security

Grade A, and why

presentation-structure 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/skills/presentation/presentation-structure/SKILL.md · 90 lines

How it starts

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

演示结构技能

关于 presentation/index.html 中演示文稿结构方式的知识。

文件位置

presentation/index.html —— 一个单文件 HTML 演示文稿,包含内联 CSS 和 JS。

幻灯片格式

每张幻灯片都是一个带有 data-slide(顺序编号)和可选 data-level(在过渡点的旅程等级)的 div:

<!-- 普通幻灯片 —— 继承之前 data-level 幻灯片的等级 -->
<div class="slide" data-slide="12">
    <h1>幻灯片标题</h1>
    <!-- 内容 -->
</div>

<!-- 等级过渡幻灯片 —— 为此幻灯片及之后的所有幻灯片设置新等级 -->
<div class="slide section-slide" data-slide="10" data-level="low">
    <h1>章节名称</h1>
    <p class="section-desc">等级:低 —— 本章描述</p>
</div>

<!-- 标题幻灯片(居中) -->
<div class="slide title-slide" data-slide="1">
    <h1>演示标题</h1>
    <p class="subtitle">副标题文本</p>
</div>

旅程栏等级系统

演示使用 4 级系统而非累积百分比:

  • 等级通过关键过渡幻灯片(章节分隔符)上的 data-level 属性设置
  • 所有在 data-level 幻灯片之后的幻灯片继承该等级,直到下一个过渡
  • 旅程栏填充至 25% / 50% / 75% / 100%,分别对应低 / 中 / 高 / 专业等级
  • 第 1 张幻灯片(标题幻灯片)隐藏进度栏;从第 2 张幻灯片开始显示
  • 第一个 data-level 之前的幻灯片(第 2-9 张)显示空进度栏(尚未设置等级)
  • .level-badge 由 JS 注入到带有 data-level 的幻灯片的 <h1> 中 —— 请勿在 HTML 中硬编码

按章节划分的等级过渡

章节 幻灯片范围 data-level 进度栏高度
第 0 部分:介绍 幻灯片 1-4 (无) 隐藏 / 空
第 1 部分:前置要求 幻灯片 5-9 (无)
第 2 部分:更好的提示词 幻灯片 10-17 low 25%
第 3 部分:项目记忆 幻灯片 18-24 medium 50%
第 4 部分:结构化工作流 幻灯片 25-28 (继承 medium) 50%
第 5 部分:领域知识 幻灯片 29-33 high 75%
第 6 部分:智能体工程 幻灯片 34-46 high 75%
附录 幻灯片 47+ (继承 high) 75%

导航系统

  • goToSlide(n) —— 用于目录链接,必须匹配实际的 data-slide 编号
  • totalSlides 从 DOM 自动计算(document.querySelectorAll('[data-slide]').length
  • 方向键、空格键和触摸滑动用于导航
  • 幻灯片计数器在左下角显示 当前 / 总计

重新编号规则

添加、删除或重新排序幻灯片后:

  1. 从 1 开始依次重新编号所有 data-slide 属性
  2. 更新目录/旅程地图幻灯片中所有 goToSlide() 调用
  3. JS totalSlides 自动计算 —— 无需手动更新
  4. 确认没有间隙或重复

章节分隔符格式

章节分隔符使用 section-slide 类。等级过渡的章节分隔符带有 data-level 并在描述中显示等级名称:

<div class="slide section-slide" data-slide="10" data-level="low">
    <p class="section-number">第 2 部分</p>
    <h1>更好的提示词</h1>
    <p class="section-desc">等级:低 —— 实现真正有效的提示。</p>
</div>

Read the full file on GitHub · 90 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 · 90 lines · 24 tokens per session scan A 363cc9e04f56

Subscribe to this mod's changes

presentation-structure is a skill published in the GitHub repository rongxinzy/claude-code-best-practice-zh (6 stars, last pushed 4mo ago), licensed MIT. It adds 24 tokens to every session and 1,104 once invoked, about $0.0001 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

webgl-holographic-foil

A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.

nexu-io/open-design · 41 tokens

general-video

Author or edit a custom HyperFrames composition when no specialized workflow fits, or when BRIEF.md sets flow: companion. Use for longer or multi-scene pieces, brand and sizzle reels, montages, static loops, static title cards, footage remixes, and freeform builds. Use motion-graphics instead for a short unnarrated…

heygen-com/hyperframes · 92 tokens

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

html-ppt-taste-brutalist

16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).

nexu-io/open-design · 78 tokens

diagnostic-stem-delivery

Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.

HKUDS/OpenSpace · 23 tokens

chengfeng-check-updates

An environment manager for a video-editing system. It checks whether its skills and runtime—the software needed to run them—are installed and compatible.

Agentchengfeng/chengfeng-videocut-skills · 120 tokens