build-personal-skill
Evidence-based creation of a reusable personal course-making Skill from the user's own classroom and chat history. Use when the user asks to summarize,…
The design law of a slide page — canvas geometry, the text height table, the type scale, contrast pairs, spacing rhythm, and which element type carries which content. Load it when patching slide elements one at a time, when a fix is about colour or contrast, when text has to
$ npx -y skills add thu-maic/openmaic --skill slide-craft --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/slide-craftContext preview
The summary Claude sees to decide when to auto-load this skill.
The design law of a slide page — canvas geometry, the text height table, the type scale, contrast pairs, spacing rhythm, and which element type carries which content. Load it when patching slide elements one at a time, when a fix is about colour or contrast, when text has to
name: slide-craft title: "页面设计" description: The design law of a slide page — canvas geometry, the text height table, the type scale, contrast pairs, spacing rhythm, and which element type carries which content. Load it when patching slide elements one at a time, when a fix is about colour or contrast, when text has to grow or shrink inside a box, when a page feels crowded or empty, or when replacement content needs real rich-text structure. It is the standard `page-clone` and `pro-editing` edit against, not a procedure of its own — those two decide which pages to touch and in what order, this one decides what a good page looks like when you put it back.
Every slide in this runtime was drawn under a long set of rules — the canvas, the height table, the type scale, the spacing standards. The generator that drew the page had all of them in front of it. When you patch one element, you have the page's numbers and nothing else, and the rules are the only way to tell a repair from a dent.
This is that rule set, restated for editing. It is about the page, not the process: which numbers a change has to stay consistent with, and which fields actually reach the screen.
The canvas is **1000 × 562.5**. All elements respect a **50px margin**, so the live area is `left ∈ [50, 950]`, `top ∈ [50, 512.5]`, and an element's right edge (`left + width`) stays ≤ 950, its bottom edge ≤ 512.5.
The page's own alignment grid, which existing elements are already on:
Changing `width` on centred content changes `left` too, and they are two separate writes. Read the neighbours' boxes first and land on the column they are already using; a lone element 8px off the shared left edge reads as a mistake even though nothing overflows.
**There is no alignment operation.** Every position is an explicit number you write to that element's own `left` / `top` / `width` / `height`, one path per call, computed from the neighbours you read. Aligning a row means giving each element the number the row already uses — not asking the page to tidy itself.
A text element has **10px padding on all four sides**, so its usable area is `(width - 20) × (height - 20)`, and heights come from one table (line-height 1.5, padding included):
| Font size | 1 line | 2 lines | 3 lines | 4 lines | 5 lines | | --------- | ------ | ------- | ------- | ------- | ------- | | 14px | 43 | 64 | 85 | 106 | 127 | | 16px | 46 | 70 | 94 | 118 | 142 | | 18px | 49 | 76 | 103 | 130 | 157 | | 20px | 52 | 82 | 112 | 142 | 172 | | 24px | 58 | 94 | 130 | 166 | 202 | | 28px | 64 | 106 | 148 | 190 | 232 | | 32px | 70 | 118 | 166 | 214 | 262 | | 36px | 76 | 130 | 184 | 238 | 292 |
When you replace an element's words, re-derive its height instead of keeping the old one:
1. `characters_per_line = (width - 20) / font_size`. Keep the longest line at **≤ 75%** of that; past 100% the text wraps and takes a row you did not budget. 2. Count the lines your new content needs — one per `<p>`, plus a wrap for every paragraph over `characters_per_line` — then add ~0.8 of a line of slack and round up. 3. Look the height up against the **largest font size present in the content**, not the average.
Height is a container, not a clamp: overflowing text spills past the box rather than shrinking, and the page shows the spill. The fix order is **shorten the words, then step to the next table row, then widen the box** — in that order, because a slide that needs a bigger box usually needs fewer words.
| Content | Size | | ----------- | ------- | | Main title | 32-36px | | Subtitle | 24-28px | | Key points | 18-20px | | Body | 16-18px | | Caption | 14-16px |
Levels stay 2-4px apart and everything at one level uses one size. When you touch an element, take its size from the siblings that share its role on that page rather than from this table fresh — the page's own scale wins, and this table is how you recognise which level an element belongs to.
**Size lives in the content HTML**, as inline `font-size` on the `<p>` — there is no font-size field to write. So changing a size means writing the whole content string back, which means you have to know the markup you are replacing.
The `content` of a text element is an HTML string, and this page's CSS resets most tag semantics. Four consequences decide how you write rich text:
`list-style` and the indent, and the rule that puts them back is scoped to the browser editor — not to classroom playback. A list sent as `<ul><li>…</li></ul>` comes out as bare unindented lines. Write bullets the way the deck itself does: **one `<p>` per item with the marker in the text**, `<p style="font-size:18px;">• First point</p>`.
`font-weight: inherit` on them, so a heading tag is a `<p>` with extra characters. Size and weight come from inline `font-size` and `<strong>`, which do work.
line-height separates them. If two lines need air between them, raise the element's `lineHeight` or split them into two elements; do not expect an empty `<p>`, whose height still costs you a table row.
single `<p>` and the newline collapses to a
Open Multi-Agent Interactive Classroom — Get an immersive, multi-agent learning experience in just one click
Repo: thu-maic/openmaic
Evidence-based creation of a reusable personal course-making Skill from the user's own classroom and chat history. Use when the user asks to summarize,…
Multi-stage series — a request for several classrooms that belong together, like 「7 天学 Python」, a four-week onboarding track, a semester unit split across…
Deep Interactive courses. Plans the course so the learner manipulates something on most pages — simulations, diagrams they explore, code they run, games, 3D…
Courses whose content rests on current, external or real-world facts that must be verified against live sources before being taught — recent events, market or…
Improve factual reliability while creating or reviewing a course or supplied content. Use when the user asks to fact-check, verify accuracy, reduce…
Turn any concept, lesson, slide deck, or source material into a Feynman learning cycle in which learners explain first, expose the smallest gap, rebuild the…