Create print-grade single-page landing or brief documents in a warm paper design system with restrained ink accents. Produce a print-grade single-page kami (紙 / 纸) document — warm parchment canvas, ink-blue accent, serif at one weight, no italic, no cool grays. The output reads like a professional white paper or studio one-pager, not an app UI. Multilingual by design (EN · zh-CN · ja). One self-contained HTML file, zero dependencies.
Produce a single-page document in the kami (紙 / 纸) design system.
The aesthetic borrows from editorial print, technical white papers,
and old typewritten correspondence — the goal is good content on
good paper, not modern app UI.
Design system source of truth:design-systems/kami/DESIGN.md.
Read it before shipping. Tokens, type rules, the "ten invariants",
and forbidden colors all live there.
What you get
A single self-contained HTML file with:
Warm parchment canvas (#f5f4ed) — never #ffffff.
Single chromatic accent — ink-blue (#1B365D), used on the
section number, the headline accent word, the left rule of the
manifesto, and the metric values. Anywhere else, ink-blue must
cover ≤ 5% of the document surface area.
Serif at one weight (500) for hierarchy — Charter (EN),
TsangerJinKai02 / Source Han Serif (CN), or YuMincho (JA),
selected by the language parameter. No italic anywhere.
Tight print rhythm — line-heights 1.10–1.55, letter-spacing
per language (0 for EN, 0.35px for CN, 0.02em for JA).
Numeric stacks set in font-variant-numeric: tabular-nums so
metric columns and pagination digits sit cleanly aligned.
Depth via 1px rings + whisper shadows (0 4px 24px rgba(0,0,0,0.05)).
No hard drop shadows, no neumorphism, no backdrop-filter blurs.
Tag fills as solid hex (e.g. #E4ECF5), never rgba() —
print renderers double-paint alpha tags.
Responsive at 1280 / 980 / 768 / 560.
Page structure
1. Eyebrow row — locale switcher · edition · version (12px sans uppercase)
2. Hero — display headline (96–106px serif 500), tagline (21px),
three hero-token chips (paper-tinted)
3. Manifesto — pull paragraph in serif 400, 20px, 1.65 LH, with
ink-blue left-rule and signature footer
4. Metrics row — 3-6 cells: value (24px serif 500 ink-blue, tabular-nums),
label (12px serif 500 olive)
5. Chapters — numbered (`01`, `02`, …) ink-blue serif 500 14px,
section title 28-32px, body 14-15px
6. Footer — kicker word (mega serif 500), license · year · contact,
three-column site index in 12px serif 500
Workflow contract
1. Gather brand brief
Use AskQuestion (or equivalent) to collect the brand brief in
chunks. Don't dump the whole input list on the user; ask in two
rounds:
The language parameter controls which --serif stack is set on
:root. Pick based on the dominant language of the manifesto and
chapter body copy:
language
--serif
Notes
en
Charter, Georgia, Palatino, Times New Roman, serif
default
zh-CN
TsangerJinKai02, Source Han Serif SC, Songti SC, Georgia
letter-spacing 0.35px on body
ja
YuMincho, Hiragino Mincho ProN, Source Han Serif JP
also override --olive to #4d4c48 (YuMincho strokes are thinner)
Inline mixed-script content is fine — the browser per-glyph fallback
chain handles it. Do not chain all three families inside one
font-family declaration; that dilutes character.
3. Write index.html
Output a single file with all CSS inline. Mirror the structure of
example.html and use only the tokens from
design-systems/kami/DESIGN.md. Do not invent new colors,
weights, or font families.
Component primitives the agent can drop in (all defined in the
example's <style> block):
.eyebrow, .label — sans-serif overlines
.metric — value + label vertical pair
.section-num + .section-title + .section-lede
.tag.standard, .tag.brush — solid-hex tags (one brush max per page)
.quote — left-rule serif 500 quote
ul.dash — en-dash bullets in ink-blue
.code — ivory-bg, 1px-border code block
.footer-kicker — mega serif 500 word
Tag every editable element with data-od-id="<unique-slug>" so the
host app's comment mode can target it.
4. Self-check before delivering
Page background is parchment (#f5f4ed), never #ffffff.
Ink-blue (#1B365D) covers ≤ 5% of visible surface — count
section numbers, the manifesto rule, the metric values, the
headline accent. Total ≤ 5%.
All grays are warm (R ≈ G > B). No slate-*, no #f3f4f6.
Serif weight stays at 500 — no font-weight: 700 or 900
anywhere on serif text.
No font-style: italic anywhere. Emphasis swaps to ink-blue
color or a .tag instead.
All tag fills are solid hex (e.g. #E4ECF5), never rgba().
Shadows: at most a 1px ring or a 0 4px 24px rgba(0,0,0,0.05)
whisper. No hard drop shadows.
Headline ≤ 6 words at display size; CJK ≤ 8 characters.
At 768px and 560px the layout collapses to one column without
horizontal scroll.
Files in this skill
skills/kami-landing/
├── SKILL.md # this contract
├── README.md # human quick-start
└── example.html # canonical Open Design rendering
Boundaries
Do not invent new colors or typefaces. The kami palette is
fixed; if a brief demands a brand color, push back or render the
brand color as a single .tag.brush accent.
Do not introduce a second accent color. Pick ink-blue or pick
nothing.
Do not mix all three font stacks in one declaration; pick the
dominant language, override --serif on :root, and let the
browser per-glyph fallback resolve mixed-script inline content.
Do not use rgba() for tag fills — print renderers
double-paint alpha tags. Use the pre-blended solid hex from the
table in design-systems/kami/DESIGN.md §2.
Do not add JavaScript for animation. The page is paper, not
an app — motion belongs to the reader scrolling.
skills/kami-deck/ — sister skill that produces a
slide deck in the same kami language.
Upstream: tw93/kami — original
Claude skill (MIT) that the design system adapts.
1---2name: kami-landing3description: Create print-grade single-page landing or brief documents in a warm paper design system with restrained ink accents. Produce a print-grade single-page kami (紙 / 纸) document — warm parchment canvas, ink-blue accent, serif at one weight, no italic, no cool grays. The output reads like a professional white paper or studio one-pager, not an app UI. Multilingual by design (EN · zh-CN · ja). One self-contained HTML file, zero dependencies.4---56# kami-landing78Produce a single-page document in the **kami (紙 / 纸)** design system.9The aesthetic borrows from editorial print, technical white papers,10and old typewritten correspondence — the goal is *good content on11good paper*, not *modern app UI*.1213> **Design system source of truth:** [`design-systems/kami/DESIGN.md`](../../design-systems/kami/DESIGN.md).14> Read it before shipping. Tokens, type rules, the "ten invariants",15> and forbidden colors all live there.1617## What you get1819A single self-contained HTML file with:2021- **Warm parchment canvas** (`#f5f4ed`) — never `#ffffff`.22- **Single chromatic accent** — ink-blue (`#1B365D`), used on the23 section number, the headline accent word, the left rule of the24 manifesto, and the metric values. Anywhere else, ink-blue must25 cover ≤ 5% of the document surface area.26- **Serif at one weight (500) for hierarchy** — Charter (EN),27 TsangerJinKai02 / Source Han Serif (CN), or YuMincho (JA),28 selected by the `language` parameter. **No italic anywhere.**29- **Tight print rhythm** — line-heights 1.10–1.55, letter-spacing30 per language (0 for EN, 0.35px for CN, 0.02em for JA).31- **Numeric stacks set in `font-variant-numeric: tabular-nums`** so32 metric columns and pagination digits sit cleanly aligned.33- **Depth via 1px rings + whisper shadows** (`0 4px 24px rgba(0,0,0,0.05)`).34 No hard drop shadows, no neumorphism, no backdrop-filter blurs.35- **Tag fills as solid hex** (e.g. `#E4ECF5`), never `rgba()` —36 print renderers double-paint alpha tags.37- **Responsive** at 1280 / 980 / 768 / 560.3839## Page structure4041```text421. Eyebrow row — locale switcher · edition · version (12px sans uppercase)432. Hero — display headline (96–106px serif 500), tagline (21px),44 three hero-token chips (paper-tinted)453. Manifesto — pull paragraph in serif 400, 20px, 1.65 LH, with46 ink-blue left-rule and signature footer474. Metrics row — 3-6 cells: value (24px serif 500 ink-blue, tabular-nums),48 label (12px serif 500 olive)495. Chapters — numbered (`01`, `02`, …) ink-blue serif 500 14px,50 section title 28-32px, body 14-15px516. Footer — kicker word (mega serif 500), license · year · contact,52 three-column site index in 12px serif 50053```5455## Workflow contract5657### 1. Gather brand brief5859Use `AskQuestion` (or equivalent) to collect the brand brief in60chunks. Don't dump the whole input list on the user; ask in two61rounds:62631. Identity round — name, tagline, location, edition / version,64 primary URL, dominant language.652. Content round — manifesto paragraph + signature, 3-6 metric66 tiles, 3-5 chapter (title + lede + body) entries.6768### 2. Pick the language stack6970The `language` parameter controls which `--serif` stack is set on71`:root`. Pick based on the dominant language of the manifesto and72chapter body copy:7374| `language` | `--serif` | Notes |75| :--------- | :-------------------------------------------------------- | :------------------------------------- |76| `en` | Charter, Georgia, Palatino, Times New Roman, serif | default |77| `zh-CN` | TsangerJinKai02, Source Han Serif SC, Songti SC, Georgia | letter-spacing 0.35px on body |78| `ja` | YuMincho, Hiragino Mincho ProN, Source Han Serif JP | also override `--olive` to `#4d4c48` (YuMincho strokes are thinner) |7980Inline mixed-script content is fine — the browser per-glyph fallback81chain handles it. Do **not** chain all three families inside one82`font-family` declaration; that dilutes character.8384### 3. Write `index.html`8586Output a single file with all CSS inline. Mirror the structure of87[`example.html`](./example.html) and use only the tokens from88`design-systems/kami/DESIGN.md`. Do **not** invent new colors,89weights, or font families.9091Component primitives the agent can drop in (all defined in the92example's `<style>` block):9394- `.eyebrow`, `.label` — sans-serif overlines95- `.metric` — value + label vertical pair96- `.section-num` + `.section-title` + `.section-lede`97- `.tag.standard`, `.tag.brush` — solid-hex tags (one brush max per page)98- `.quote` — left-rule serif 500 quote99- `ul.dash` — en-dash bullets in ink-blue100- `.code` — ivory-bg, 1px-border code block101- `.footer-kicker` — mega serif 500 word102103Tag every editable element with `data-od-id="<unique-slug>"` so the104host app's comment mode can target it.105106### 4. Self-check before delivering107108- [ ] Page background is parchment (`#f5f4ed`), never `#ffffff`.109- [ ] Ink-blue (`#1B365D`) covers ≤ 5% of visible surface — count110 section numbers, the manifesto rule, the metric values, the111 headline accent. Total ≤ 5%.112- [ ] All grays are warm (R ≈ G > B). No `slate-*`, no `#f3f4f6`.113- [ ] Serif weight stays at 500 — no `font-weight: 700` or `900`114 anywhere on serif text.115- [ ] No `font-style: italic` anywhere. Emphasis swaps to ink-blue116 color or a `.tag` instead.117- [ ] All numeric stacks (metric values, pagination, dates, financial118 figures) carry `font-variant-numeric: tabular-nums`.119- [ ] All tag fills are solid hex (e.g. `#E4ECF5`), never `rgba()`.120- [ ] Shadows: at most a `1px` ring or a `0 4px 24px rgba(0,0,0,0.05)`121 whisper. No hard drop shadows.122- [ ] Headline ≤ 6 words at display size; CJK ≤ 8 characters.123- [ ] At 768px and 560px the layout collapses to one column without124 horizontal scroll.125126## Files in this skill127128```text129skills/kami-landing/130├── SKILL.md # this contract131├── README.md # human quick-start132└── example.html # canonical Open Design rendering133```134135## Boundaries136137- **Do not** invent new colors or typefaces. The kami palette is138 fixed; if a brief demands a brand color, push back or render the139 brand color as a single `.tag.brush` accent.140- **Do not** introduce a second accent color. Pick ink-blue or pick141 nothing.142- **Do not** mix all three font stacks in one declaration; pick the143 dominant language, override `--serif` on `:root`, and let the144 browser per-glyph fallback resolve mixed-script inline content.145- **Do not** use `rgba()` for tag fills — print renderers146 double-paint alpha tags. Use the pre-blended solid hex from the147 table in `design-systems/kami/DESIGN.md` §2.148- **Do not** add JavaScript for animation. The page is paper, not149 an app — motion belongs to the reader scrolling.150151## See also152153- [`design-systems/kami/DESIGN.md`](../../design-systems/kami/DESIGN.md) — the full token spec.154- [`skills/kami-deck/`](../kami-deck/) — sister skill that produces a155 slide deck in the same kami language.156- Upstream: [`tw93/kami`](https://github.com/tw93/kami) — original157 Claude skill (MIT) that the design system adapts.158
Run npx skillmds@latest add onfire7777/kami-landing in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Create print-grade single-page landing or brief documents in a warm paper design system with restrained ink accents. Produce a print-grade single-page kami (紙 / 纸) document — warm parchment canvas, ink-blue accent, serif at one weight, no italic, no cool grays. The output reads like a professional white paper or studio one-pager, not an app UI. Multilingual by design (EN · zh-CN · ja). One self-contained HTML file, zero dependencies. It is listed under Design & Media on SkillMD.
This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
onfire7777 (@onfire7777) published this skill. Their other Agent Skills are listed on their SkillMD profile.