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.
curl -O https://raw.githubusercontent.com/rongxinzy/claude-code-best-practice-zh/main/.claude/skills/presentation/presentation-structure/SKILL.mdgit clone --depth 1 https://github.com/rongxinzy/claude-code-best-practice-zhWrote 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.
[](https://agentmods.dev/skills/rongxinzy/claude-code-best-practice-zh/presentation-structure)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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 开始依次重新编号所有
data-slide属性 - 更新目录/旅程地图幻灯片中所有
goToSlide()调用 - JS
totalSlides自动计算 —— 无需手动更新 - 确认没有间隙或重复
章节分隔符格式
章节分隔符使用 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>
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.
- 8d ago First seen · 90 lines · 24 tokens per session scan A 363cc9e04f56
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.
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.
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…
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.
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).
diagnostic-stem-delivery
Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.
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.