docs: correct the docs rules and label the Prompt Guide previews

Three things the quality layer asserted but the pages did not support.

changelog-process said "do not recreate docs/weekly-updates.mdx; that empty
public page was retired" while the page exists with a real curated feed. It
describes the page as it is: unlisted, reachable by URL and RSS, with versioned
notes still in the Changelog.

The Related-topics rule read as universal, but three different endings are in
use and each is right for its shape — Related topics on task pages, a single
Next line through the Prompt Guide's numbered sequence, and nothing on
reference and concept pages. The rule now says that, and every section matches
it; color-grading gained the Next line it was missing and no longer points at a
page this stack retired.

The vocabulary previews were 18 DocsVideo players in three unlabelled grids, so
a reader saw several near-identical clips with no way to tell smooth from
snappy. They are now native muted loops with visible captions, which is what
AGENTS.md asks for small preview loops in the first place.
This commit is contained in:
ukimsanov
2026-08-04 03:06:58 -07:00
parent 174bd4e2dc
commit fd90fd3e72
4 changed files with 286 additions and 97 deletions
+12 -3
View File
@@ -54,9 +54,18 @@ narrated film a reader watches intentionally. A plain `<video>` is only for a
small, muted, autoplaying preview loop inside a visual explanation or Catalog
item. Do not mix native browser controls with the custom player.
**Related topics must be visible content.** Mintlify does not render a
`related:` frontmatter list. Add a final `## Related topics` section with only
the two or three destinations that genuinely help the reader continue.
**End a page by pointing somewhere, and make the pointer visible content.**
Mintlify does not render a `related:` frontmatter list, so a frontmatter key
buys nothing. How the pointer looks depends on the page:
- Task, guide, Studio, and Catalog pages end with a `## Related topics` section
naming the two or three destinations that genuinely help the reader continue.
- Pages in a numbered sequence — the Prompt Guide — end with a single
`*Next: [page] — why*` line instead. A course has one useful destination, and
three competing links break the through-line.
- Reference and concept pages (`/packages`, `/sdk`, `/reference`, `/concepts`)
may end without either. A reader arrives there from one specific question and
leaves the same way; inventing three related links is filler.
### Custom React components
+1 -1
View File
@@ -99,7 +99,7 @@ This creates internal editorial drafts:
- `updates/social/2026-06-07.discord.md`
- `updates/social/2026-06-07.x.md`
Review and rewrite the generated files before publishing anything. Social drafts are never posted automatically. Do not recreate or commit `docs/weekly-updates.mdx`; that empty public page was retired.
Review and rewrite the generated files before publishing anything. Social drafts are never posted automatically. Curated highlights from these packets go to [Weekly updates](/weekly-updates), which is unlisted in the sidebar and reachable by URL and RSS; exact versioned release notes stay in the [Changelog](/changelog).
## Writing style
+3 -1
View File
@@ -207,5 +207,7 @@ Two caveats worth knowing before you promise a client a ramp:
## Next steps
- [Color Grading guide](/guides/color-grading) — the full contract, every key and bound
- [Media Overlays](/guides/media-overlays) — HUD, flash, light leak, freeze-frame dressing
- [Catalog: overlays and effects](/catalog) — HUD, flash, light leak, freeze-frame dressing
- [VFX and liquid glass](/prompting/vfx-and-liquid-glass) — the canvas-pipeline end of the catalog
*Next: [VFX and liquid glass](/prompting/vfx-and-liquid-glass) — the same grading vocabulary pushed into the canvas pipeline.*
+270 -92
View File
@@ -3,8 +3,6 @@ title: Vocabulary that changes output
description: "Natural-language adjectives the skills map to specific framework settings — easing, captions, transitions, audio, voices."
---
import { DocsVideo } from "/snippets/docs-video.jsx";
[The dial](/prompting/specification-dial) told you *how much* to specify; this page is the word list for the cheap-precision setting — style tokens that cost you nothing to say and remove real ambiguity. The skills map natural-language adjectives to specific framework settings. Using the right word gets you the right result without specifying technical details.
## Motion & easing
@@ -25,36 +23,96 @@ Describe how motion should *feel* and the agent picks the matching GSAP ease:
Each word, rendered — the same move, only the ease changes:
<div style={{ display: "grid", gridTemplateColumns: "repeat(auto-fit, minmax(200px, 1fr))", gap: "1rem", margin: "1.25rem 0" }}>
<DocsVideo
title="HyperFrames video: Ease Power2 Out"
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/ease-power2-out.mp4#t=0.1"
loop
/>
<DocsVideo
title="HyperFrames video: Ease Power4 Out"
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/ease-power4-out.mp4#t=0.1"
loop
/>
<DocsVideo
title="HyperFrames video: Ease Back Out"
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/ease-back-out.mp4#t=0.1"
loop
/>
<DocsVideo
title="HyperFrames video: Ease Elastic Out"
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/ease-elastic-out.mp4#t=0.1"
loop
/>
<DocsVideo
title="HyperFrames video: Ease Expo Out"
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/ease-expo-out.mp4#t=0.1"
loop
/>
<DocsVideo
title="HyperFrames video: Ease Sine Inout"
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/ease-sine-inout.mp4#t=0.1"
loop
/>
<figure style={{ margin: 0 }}>
<video
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/ease-power2-out.mp4#t=0.1"
autoPlay
muted
loop
playsInline
preload="metadata"
aria-label="smooth preview"
style={{ display: "block", width: "100%", borderRadius: "10px", background: "#000" }}
/>
<figcaption style={{ marginTop: "0.4rem", fontSize: "0.8125rem", opacity: 0.75 }}>
smooth <code>power2.out</code>
</figcaption>
</figure>
<figure style={{ margin: 0 }}>
<video
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/ease-power4-out.mp4#t=0.1"
autoPlay
muted
loop
playsInline
preload="metadata"
aria-label="snappy preview"
style={{ display: "block", width: "100%", borderRadius: "10px", background: "#000" }}
/>
<figcaption style={{ marginTop: "0.4rem", fontSize: "0.8125rem", opacity: 0.75 }}>
snappy <code>power4.out</code>
</figcaption>
</figure>
<figure style={{ margin: 0 }}>
<video
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/ease-back-out.mp4#t=0.1"
autoPlay
muted
loop
playsInline
preload="metadata"
aria-label="bouncy preview"
style={{ display: "block", width: "100%", borderRadius: "10px", background: "#000" }}
/>
<figcaption style={{ marginTop: "0.4rem", fontSize: "0.8125rem", opacity: 0.75 }}>
bouncy <code>back.out</code>
</figcaption>
</figure>
<figure style={{ margin: 0 }}>
<video
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/ease-elastic-out.mp4#t=0.1"
autoPlay
muted
loop
playsInline
preload="metadata"
aria-label="springy preview"
style={{ display: "block", width: "100%", borderRadius: "10px", background: "#000" }}
/>
<figcaption style={{ marginTop: "0.4rem", fontSize: "0.8125rem", opacity: 0.75 }}>
springy <code>elastic.out</code>
</figcaption>
</figure>
<figure style={{ margin: 0 }}>
<video
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/ease-expo-out.mp4#t=0.1"
autoPlay
muted
loop
playsInline
preload="metadata"
aria-label="dramatic preview"
style={{ display: "block", width: "100%", borderRadius: "10px", background: "#000" }}
/>
<figcaption style={{ marginTop: "0.4rem", fontSize: "0.8125rem", opacity: 0.75 }}>
dramatic <code>expo.out</code>
</figcaption>
</figure>
<figure style={{ margin: 0 }}>
<video
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/ease-sine-inout.mp4#t=0.1"
autoPlay
muted
loop
playsInline
preload="metadata"
aria-label="dreamy preview"
style={{ display: "block", width: "100%", borderRadius: "10px", background: "#000" }}
/>
<figcaption style={{ marginTop: "0.4rem", fontSize: "0.8125rem", opacity: 0.75 }}>
dreamy <code>sine.inOut</code>
</figcaption>
</figure>
</div>
@@ -75,41 +133,111 @@ Compositions have no physical camera, but camera words translate directly into s
The same scene under each camera word:
<div style={{ display: "grid", gridTemplateColumns: "repeat(auto-fit, minmax(200px, 1fr))", gap: "1rem", margin: "1.25rem 0" }}>
<DocsVideo
title="HyperFrames video: Camera Push In"
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/camera-push-in.mp4#t=0.1"
loop
/>
<DocsVideo
title="HyperFrames video: Camera Pull Back"
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/camera-pull-back.mp4#t=0.1"
loop
/>
<DocsVideo
title="HyperFrames video: Camera Pan"
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/camera-pan.mp4#t=0.1"
loop
/>
<DocsVideo
title="HyperFrames video: Camera Crane"
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/camera-crane.mp4#t=0.1"
loop
/>
<DocsVideo
title="HyperFrames video: Camera Whip"
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/camera-whip.mp4#t=0.1"
loop
/>
<DocsVideo
title="HyperFrames video: Camera Parallax"
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/camera-parallax.mp4#t=0.1"
loop
/>
<DocsVideo
title="HyperFrames video: Camera Orbit"
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/camera-orbit.mp4#t=0.1"
loop
/>
<figure style={{ margin: 0 }}>
<video
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/camera-push-in.mp4#t=0.1"
autoPlay
muted
loop
playsInline
preload="metadata"
aria-label="slow push-in preview"
style={{ display: "block", width: "100%", borderRadius: "10px", background: "#000" }}
/>
<figcaption style={{ marginTop: "0.4rem", fontSize: "0.8125rem", opacity: 0.75 }}>
slow push-in
</figcaption>
</figure>
<figure style={{ margin: 0 }}>
<video
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/camera-pull-back.mp4#t=0.1"
autoPlay
muted
loop
playsInline
preload="metadata"
aria-label="pull back preview"
style={{ display: "block", width: "100%", borderRadius: "10px", background: "#000" }}
/>
<figcaption style={{ marginTop: "0.4rem", fontSize: "0.8125rem", opacity: 0.75 }}>
pull back
</figcaption>
</figure>
<figure style={{ margin: 0 }}>
<video
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/camera-pan.mp4#t=0.1"
autoPlay
muted
loop
playsInline
preload="metadata"
aria-label="pan across preview"
style={{ display: "block", width: "100%", borderRadius: "10px", background: "#000" }}
/>
<figcaption style={{ marginTop: "0.4rem", fontSize: "0.8125rem", opacity: 0.75 }}>
pan across
</figcaption>
</figure>
<figure style={{ margin: 0 }}>
<video
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/camera-crane.mp4#t=0.1"
autoPlay
muted
loop
playsInline
preload="metadata"
aria-label="crane down/up preview"
style={{ display: "block", width: "100%", borderRadius: "10px", background: "#000" }}
/>
<figcaption style={{ marginTop: "0.4rem", fontSize: "0.8125rem", opacity: 0.75 }}>
crane down/up
</figcaption>
</figure>
<figure style={{ margin: 0 }}>
<video
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/camera-whip.mp4#t=0.1"
autoPlay
muted
loop
playsInline
preload="metadata"
aria-label="whip to preview"
style={{ display: "block", width: "100%", borderRadius: "10px", background: "#000" }}
/>
<figcaption style={{ marginTop: "0.4rem", fontSize: "0.8125rem", opacity: 0.75 }}>
whip to
</figcaption>
</figure>
<figure style={{ margin: 0 }}>
<video
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/camera-parallax.mp4#t=0.1"
autoPlay
muted
loop
playsInline
preload="metadata"
aria-label="parallax preview"
style={{ display: "block", width: "100%", borderRadius: "10px", background: "#000" }}
/>
<figcaption style={{ marginTop: "0.4rem", fontSize: "0.8125rem", opacity: 0.75 }}>
parallax
</figcaption>
</figure>
<figure style={{ margin: 0 }}>
<video
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/camera-orbit.mp4#t=0.1"
autoPlay
muted
loop
playsInline
preload="metadata"
aria-label="drone orbit preview"
style={{ display: "block", width: "100%", borderRadius: "10px", background: "#000" }}
/>
<figcaption style={{ marginTop: "0.4rem", fontSize: "0.8125rem", opacity: 0.75 }}>
drone orbit
</figcaption>
</figure>
</div>
@@ -225,31 +353,81 @@ Hand-drawn emphasis effects for text:
The five modes on the same sentence:
<div style={{ display: "grid", gridTemplateColumns: "repeat(auto-fit, minmax(200px, 1fr))", gap: "1rem", margin: "1.25rem 0" }}>
<DocsVideo
title="HyperFrames video: Marker Highlight"
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/marker-highlight.mp4#t=0.1"
loop
/>
<DocsVideo
title="HyperFrames video: Marker Circle"
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/marker-circle.mp4#t=0.1"
loop
/>
<DocsVideo
title="HyperFrames video: Marker Burst"
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/marker-burst.mp4#t=0.1"
loop
/>
<DocsVideo
title="HyperFrames video: Marker Scribble"
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/marker-scribble.mp4#t=0.1"
loop
/>
<DocsVideo
title="HyperFrames video: Marker Sketchout"
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/marker-sketchout.mp4#t=0.1"
loop
/>
<figure style={{ margin: 0 }}>
<video
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/marker-highlight.mp4#t=0.1"
autoPlay
muted
loop
playsInline
preload="metadata"
aria-label="highlight preview"
style={{ display: "block", width: "100%", borderRadius: "10px", background: "#000" }}
/>
<figcaption style={{ marginTop: "0.4rem", fontSize: "0.8125rem", opacity: 0.75 }}>
highlight
</figcaption>
</figure>
<figure style={{ margin: 0 }}>
<video
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/marker-circle.mp4#t=0.1"
autoPlay
muted
loop
playsInline
preload="metadata"
aria-label="circle preview"
style={{ display: "block", width: "100%", borderRadius: "10px", background: "#000" }}
/>
<figcaption style={{ marginTop: "0.4rem", fontSize: "0.8125rem", opacity: 0.75 }}>
circle
</figcaption>
</figure>
<figure style={{ margin: 0 }}>
<video
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/marker-burst.mp4#t=0.1"
autoPlay
muted
loop
playsInline
preload="metadata"
aria-label="burst preview"
style={{ display: "block", width: "100%", borderRadius: "10px", background: "#000" }}
/>
<figcaption style={{ marginTop: "0.4rem", fontSize: "0.8125rem", opacity: 0.75 }}>
burst
</figcaption>
</figure>
<figure style={{ margin: 0 }}>
<video
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/marker-scribble.mp4#t=0.1"
autoPlay
muted
loop
playsInline
preload="metadata"
aria-label="scribble preview"
style={{ display: "block", width: "100%", borderRadius: "10px", background: "#000" }}
/>
<figcaption style={{ marginTop: "0.4rem", fontSize: "0.8125rem", opacity: 0.75 }}>
scribble
</figcaption>
</figure>
<figure style={{ margin: 0 }}>
<video
src="https://static.heygen.ai/hyperframes-oss/docs/images/prompting/marker-sketchout.mp4#t=0.1"
autoPlay
muted
loop
playsInline
preload="metadata"
aria-label="sketchout preview"
style={{ display: "block", width: "100%", borderRadius: "10px", background: "#000" }}
/>
<figcaption style={{ marginTop: "0.4rem", fontSize: "0.8125rem", opacity: 0.75 }}>
sketchout
</figcaption>
</figure>
</div>
## Text-to-speech voices