Wireframe Sketch Skill
Produce a single hand-drawn wireframe page. The whole point is "this is a
sketch" — looseness is the brand. Lean into pencil/marker tones, hatched
fills, dashed borders, slight rotations.
Workflow
- Skip the DESIGN.md if it pushes for finished UI. This skill explicitly
wants a low-fidelity look. Only honor type tokens loosely (system serif
for headlines, mono for annotations, marker font fallback).
- Pick the screen variants from the brief — typically 3–4 tab labels
like "01 · A · ORGANIZED", "02 · B · DASHBOARD", etc. One is "active",
the rest are inactive sketch tabs.
- Layout, in order:
- Page header — bold serif title with a fake "WIREFRAME v0.1" tag
pinned next to it (dashed border, slight rotation). Below: one-line
subtitle in marker italic + a date / device / fidelity dateline on
the right in mono.
- Tab strip — 4–5 labels with marker check-square glyphs. The active
one has a highlighter swipe behind it (yellow / orange tint + slight
skew).
- Sketch canvas — a graph-paper card (background: 24px × 24px grid
drawn with
linear-gradient lines), with a thick rounded border drawn
to look like a sharpie line.
- Browser chrome row — three sketched circles + a fake URL bar with
a hand-written-style URL.
- Sidebar nav — sketched checkbox + label for each nav item, marker
italic. One has a highlighter line through it (active).
- KPI tiles — 3–4 boxes, each with a chunky scribbled number in a
marker-style stroke, a tiny accent stamp, and a one-line label.
- Chart placeholder — a card with a hand-drawn axis and a wobbly
polyline. Add 3–4 dot markers.
- Bar chart placeholder — a card with hatched-fill rectangles of
varying heights.
- Sticky notes — 1–2 yellow / pink notes with marker text, taped
with a slightly rotated band, pinned over key regions to call out
"next step", "page-1", or "needs review".
- Write a single HTML document:
<!doctype html> through </html>, CSS inline.
- Use the system's available "Caveat", "Patrick Hand", or "Architects
Daughter" fonts via Google Fonts; otherwise fall back to italic serif.
- Slight rotations everywhere (
transform: rotate(-0.6deg)) to break
the grid and feel hand-drawn.
data-od-id on header, tabs, sidebar, KPIs, chart, bar-chart,
sticky notes.
- Self-check:
- The page should not look pixel-perfect. If it does, you over-rendered.
- Marker / pencil + graph paper + hatched fills + sticky notes are all
present; if any is missing, add it.
- The active tab has the highlighter swipe; the others don't.
Output contract
Emit between <artifact> tags:
<artifact identifier="wireframe-slug" type="text/html" title="Wireframe — Title">
<!doctype html>
<html>...</html>
</artifact>
One sentence before the artifact, nothing after.
1---2name: wireframe-sketch3description: Create hand-drawn wireframe explorations with graph-paper styling, annotated layout ideas, and rough interaction notes. A hand-drawn wireframe exploration — graph-paper background, marker / pencil tone, multiple tab labels for variants, sticky-note annotations, scribbled chart placeholders, hatched fills. Reads like a designer's whiteboard before any pixels are committed. Use when the brief asks for "wireframe", "sketch wireframe", "hand-drawn", "lo-fi", "whiteboard", "草稿", or "手绘原型".4---56# Wireframe Sketch Skill78Produce a single hand-drawn wireframe page. The whole point is "this is a9sketch" — looseness is the brand. Lean into pencil/marker tones, hatched10fills, dashed borders, slight rotations.1112## Workflow13141. **Skip the DESIGN.md** if it pushes for finished UI. This skill explicitly15 wants a low-fidelity look. Only honor type tokens loosely (system serif16 for headlines, mono for annotations, marker font fallback).172. **Pick the screen variants** from the brief — typically 3–4 tab labels18 like "01 · A · ORGANIZED", "02 · B · DASHBOARD", etc. One is "active",19 the rest are inactive sketch tabs.203. **Layout**, in order:21 - **Page header** — bold serif title with a fake "WIREFRAME v0.1" tag22 pinned next to it (dashed border, slight rotation). Below: one-line23 subtitle in marker italic + a date / device / fidelity dateline on24 the right in mono.25 - **Tab strip** — 4–5 labels with marker check-square glyphs. The active26 one has a highlighter swipe behind it (yellow / orange tint + slight27 skew).28 - **Sketch canvas** — a graph-paper card (background: 24px × 24px grid29 drawn with `linear-gradient` lines), with a thick rounded border drawn30 to look like a sharpie line.31 - **Browser chrome row** — three sketched circles + a fake URL bar with32 a hand-written-style URL.33 - **Sidebar nav** — sketched checkbox + label for each nav item, marker34 italic. One has a highlighter line through it (active).35 - **KPI tiles** — 3–4 boxes, each with a chunky scribbled number in a36 marker-style stroke, a tiny accent stamp, and a one-line label.37 - **Chart placeholder** — a card with a hand-drawn axis and a wobbly38 polyline. Add 3–4 dot markers.39 - **Bar chart placeholder** — a card with hatched-fill rectangles of40 varying heights.41 - **Sticky notes** — 1–2 yellow / pink notes with marker text, taped42 with a slightly rotated band, pinned over key regions to call out43 "next step", "page-1", or "needs review".444. **Write** a single HTML document:45 - `<!doctype html>` through `</html>`, CSS inline.46 - Use the system's available "Caveat", "Patrick Hand", or "Architects47 Daughter" fonts via Google Fonts; otherwise fall back to italic serif.48 - Slight rotations everywhere (`transform: rotate(-0.6deg)`) to break49 the grid and feel hand-drawn.50 - `data-od-id` on header, tabs, sidebar, KPIs, chart, bar-chart,51 sticky notes.525. **Self-check**:53 - The page should *not* look pixel-perfect. If it does, you over-rendered.54 - Marker / pencil + graph paper + hatched fills + sticky notes are all55 present; if any is missing, add it.56 - The active tab has the highlighter swipe; the others don't.5758## Output contract5960Emit between `<artifact>` tags:6162```63<artifact identifier="wireframe-slug" type="text/html" title="Wireframe — Title">64<!doctype html>65<html>...</html>66</artifact>67```6869One sentence before the artifact, nothing after.70