Borrowing it
Nothing to install: this file belongs to BuaaJoseph/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/BuaaJoseph/claude-code-best-practice-zh/master/.claude/skills/presentation/presentation-structure/SKILL.mdgit clone --depth 1 https://github.com/BuaaJoseph/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/buaajoseph/claude-code-best-practice-zh/presentation-structure)<a href="https://agentmods.dev/skills/buaajoseph/claude-code-best-practice-zh/presentation-structure"><img src="https://agentmods.dev/badge/skills/buaajoseph/claude-code-best-practice-zh/presentation-structure.svg" alt="Measured on agentmods" 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.01082 |
| Opus 5 | $0.00012 | $0.00541 |
| Sonnet 5 | $0.00005 | $0.00216 |
| Haiku 4.5 | $0.00002 | $0.00108 |
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 6d 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.
What it actually says
演示文稿结构技能
关于 presentation/index.html 中演示文稿结构如何组织的知识。
文件位置
presentation/index.html — 一个包含内联CSS和JS的单文件HTML演示文稿。
幻灯片格式
每个幻灯片是一个带有 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">Level: Low — 本章节描述</p>
</div>
<!-- 标题幻灯片(居中) -->
<div class="slide title-slide" data-slide="1">
<h1>演示文稿标题</h1>
<p class="subtitle">副标题文本</p>
</div>
旅程条级别系统
演示文稿使用4级系统而非累积百分比:
- 级别通过关键过渡幻灯片(章节分隔符)上的
data-level属性设置 data-level幻灯片之后的所有幻灯片继承该级别,直到下一个过渡- 旅程条填充至 Low/Medium/High/Pro 分别为 25%/50%/75%/100%
- 旅程条在幻灯片1(标题幻灯片)隐藏;从幻灯片2开始显示
- 第一个
data-level之前的幻灯片(幻灯片2-9)显示空条(尚未设置级别) .level-badge由JS注入到带有data-level的幻灯片的<h1>中 — 不要在HTML中硬编码
各章节的级别转换
| 章节 | 幻灯片范围 | data-level | 条高度 |
|---|---|---|---|
| Part 0: 介绍 | 幻灯片 1-4 | (无) | 隐藏/空 |
| Part 1: 前提条件 | 幻灯片 5-9 | (无) | 空 |
| Part 2: 更好的提示 | 幻灯片 10-17 | low |
25% |
| Part 3: 项目记忆 | 幻灯片 18-24 | medium |
50% |
| Part 4: 结构化工作流 | 幻灯片 25-28 | (继承medium) | 50% |
| Part 5: 领域知识 | 幻灯片 29-33 | high |
75% |
| Part 6: 代理工程 | 幻灯片 34-46 | high |
75% |
| 附录 | 幻灯片 47+ | (继承high) | 75% |
导航系统
goToSlide(n)— 用于TOC链接,必须与实际的data-slide编号匹配totalSlides从DOM自动计算(document.querySelectorAll('[data-slide]').length)- 方向键、空格和触摸滑动用于导航
- 幻灯片计数器在左下角显示
当前/总数
重新编号规则
添加、删除或重新排序幻灯片后:
- 重新编号所有
data-slide属性,从1开始顺序编号 - 更新TOC/Journey Map幻灯片中的所有
goToSlide()调用 - JS
totalSlides自动计算 — 无需手动更新 - 验证没有间隙或重复
章节分隔符格式
章节分隔符使用 section-slide 类。级别转换章节分隔符带有 data-level,并在描述中显示级别名称:
<div class="slide section-slide" data-slide="10" data-level="low">
<p class="section-number">Part 2</p>
<h1>更好的提示</h1>
<p class="section-desc">Level: Low — 有效提示带来真实结果。</p>
</div>
JS将在运行时将 .level-badge(例如 "→ Low")注入到级别转换时 <h1> 中 — 不要在HTML中手动添加这些。
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.
- 6d ago First seen · 89 lines · 24 tokens per session scan A 05e0cf1fa03a
presentation-structure is a skill published in the GitHub repository BuaaJoseph/claude-code-best-practice-zh (2 stars, last pushed 4mo ago), licensed MIT. It adds 24 tokens to every session and 1,082 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
剪辑环境的唯一管理者:就绪检查(skills 是否最新 → Runtime 是否配套)、Skills 更新激活、Runtime 安装与体检。用户说检查更新、安装剪辑环境、装播放器、检查剪辑环境、剪辑环境就绪了吗、配置转录凭证时使用;业务 Skill(剪口播/字幕/画面/导出)第 0 步也引用本 Skill 的就绪检查。不用于剪辑、字幕、画面、导出本身或项目数据迁移。.