SkillAgentSearch skills...

presentation-structure

Knowledge about the presentation slide format, weight system, navigation, and section structure

Install / Use

npx skills add shanraisshan/claude-code-best-practice --skill presentation-structure

Installs into whichever agent you are using.

About this skill
📄

SKILL.md

Installable skill definition

Quality Score

91/100

Supported Platforms

Universal

Tags

Our assessment of presentation-structure

presentation-structure scores 91/100 on our quality scale, 268th of 1,937 Development & Engineering skills we index (top 14%).

Its SKILL.md is 3.4 KB long, well organised into 8 sections with 2 code examples: a solid amount of guidance for an agent.

With 66,294 GitHub stars, it is one of the more widely adopted skills in the catalogue.

Substance
26/30
Structure
18/20
Description
12/15
Adoption
20/20
Freshness
15/15

Maintenance, license and trust

  • The repository was last updated yesterday, so presentation-structure is actively maintained.
  • It is released under the MIT license, a permissive license that allows use, modification and commercial use with attribution.
  • Its trust signals score 100/100, with no cautions. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.

Safety scan

No issues found

Our scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands. An AI review of the same text found nothing harmful.

AI review by kimi-k2.7-code on 2026-09-26. Automated pattern scan on 2026-09-25. It catches known dangerous patterns, not every risk — read a skill before letting an agent act on it.

presentation-structure compared with similar skills

All 4 of these similar skills score higher than presentation-structure; compare them before choosing.

SkillScoreStarsUpdatedFormat
presentation-structure (this skill)by shanraisshan9166.3k1d agoSKILL.md
ai-job-searchby MadsLorentzen10044.0k4d agoCLAUDE.md
claude-howtoby luongnv8910041.7k6d agoCLAUDE.md
algorithmic-artby anthropics100177.9k3d agoSKILL.md
pptxby anthropics100177.9k3d agoSKILL.md

Frequently asked questions

How do I install presentation-structure?
Run npx skills add shanraisshan/claude-code-best-practice --skill presentation-structure. The install tabs above show the steps for each supported agent.
Which AI agents does presentation-structure work with?
It is written for Universal, as a SKILL.md file. Other agents that read the same format can often use it too.
Is presentation-structure safe to use?
Our scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands. An AI review of the same text found nothing harmful. It is MIT-licensed and scores 100/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
Is presentation-structure still maintained?
The repository was last updated yesterday, so presentation-structure is actively maintained.

name: presentation-structure description: Knowledge about the presentation slide format, weight system, navigation, and section structure

Presentation Structure Skill

Knowledge about how the presentation at presentation/index.html is structured.

File Location

presentation/index.html — a single-file HTML presentation with inline CSS and JS.

Slide Format

Each slide is a div with data-slide (sequential number) and optional data-level (journey level at transition points):

<!-- Regular slide — inherits level from previous data-level slide -->
<div class="slide" data-slide="12">
    <h1>Slide Title</h1>
    <!-- content -->
</div>

<!-- Level transition slide — sets new level for this slide and all following -->
<div class="slide section-slide" data-slide="10" data-level="low">
    <h1>Section Name</h1>
    <p class="section-desc">Level: Low — description of this section</p>
</div>

<!-- Title slide (centered) -->
<div class="slide title-slide" data-slide="1">
    <h1>Presentation Title</h1>
    <p class="subtitle">Subtitle text</p>
</div>

Journey Bar Level System

The presentation uses a 4-level system instead of cumulative percentages:

  • Levels are set via data-level attribute on key transition slides (section dividers)
  • All slides after a data-level slide inherit that level until the next transition
  • The journey bar fills to 25% / 50% / 75% / 100% for Low / Medium / High / Pro respectively
  • The bar is hidden on slide 1 (title slide); from slide 2 onward the bar is shown
  • Slides before the first data-level (slides 2–9) show an empty bar (no level yet set)
  • A .level-badge is JS-injected on the <h1> of slides that carry data-level — do NOT hardcode in HTML

Level Transitions by Section

| Section | Slide Range | data-level | Bar Height | |---------|-------------|------------|------------| | Part 0: Introduction | Slides 1-4 | (none) | hidden / empty | | Part 1: Prerequisites | Slides 5-9 | (none) | empty | | Part 2: Better Prompting | Slides 10-17 | low | 25% | | Part 3: Project Memory | Slides 18-24 | medium | 50% | | Part 4: Structured Workflows | Slides 25-28 | (inherits medium) | 50% | | Part 5: Domain Knowledge | Slides 29-33 | high | 75% | | Part 6: Agentic Engineering | Slides 34-46 | high | 75% | | Appendix | Slides 47+ | (inherits high) | 75% |

Navigation System

  • goToSlide(n) — used in TOC links, must match actual data-slide numbers
  • totalSlides is auto-computed from DOM (document.querySelectorAll('[data-slide]').length)
  • Arrow keys, Space, and touch swipe for navigation
  • Slide counter shows current / total at bottom-left

Renumbering Rules

After adding, removing, or reordering slides:

  1. Renumber ALL data-slide attributes sequentially starting from 1
  2. Update all goToSlide() calls in the TOC/Journey Map slide
  3. The JS totalSlides auto-computes — no manual update needed
  4. Verify no gaps or duplicates exist

Section Divider Format

Section dividers use the section-slide class. Level-transition section dividers carry data-level and show the level name in the description:

<div class="slide section-slide" data-slide="10" data-level="low">
    <p class="section-number">Part 2</p>
    <h1>Better Prompting</h1>
    <p class="section-desc">Level: Low — effective prompting for real results.</p>
</div>

The JS will inject a .level-badge (e.g., "→ Low") into the <h1> at runtime when the level transitions — do not add these manually in HTML.

Related Skills

View on GitHub
GitHub Stars66.3k
CategoryDevelopment
Updated1d ago
Forks6.6k

Languages

HTML

Trust signals

100/100

From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.

No cautions