
iMessage Mockup Generator
FreeCreate realistic iMessage screenshots from JSON threads.
Free · Opens the source repo
What iMessage Mockup Generator does
The iMessage Mockup Generator is a tool designed for developers and designers who need to create visually accurate representations of iMessage conversations. By transforming structured JSON data into pixel-perfect screenshots, this skill allows users to generate standalone HTML and PNG files that mimic the appearance of real iOS messages. This is particularly useful for marketing materials, social media posts, and video productions where authentic-looking messaging interfaces are required.
The generator supports various configurations, including direct messages and group chats, and offers options for minimal designs, full iPhone frames, and keyboard displays. Users can customize the output to include essential elements like timestamps, typing indicators, and delivery statuses. The skill operates deterministically, meaning it produces consistent results based on the provided JSON input, ensuring that users can reproduce specific scenarios reliably.
With built-in support for dark themes and group message features, the iMessage Mockup Generator is versatile enough to cater to different project needs. It allows for the inclusion of avatars and sender names in group chats, enhancing the realism of the mockups. The ability to render these messages with accurate bubble shapes and colors further contributes to the authenticity of the generated images.
This skill is ideal for anyone involved in creating visual content that requires messaging interfaces, such as app developers, marketers, and video editors. It streamlines the process of generating mockups, saving time and effort while ensuring high-quality outputs that meet professional standards.
When to use it
Use this tool when you need to create realistic iMessage screenshots for advertisements, social media, or video storyboards.
When not to use it
Avoid using this skill for general graphic design tasks that do not involve iMessage mockups or when you require more complex graphic elements not supported by the tool.
What you can build with it
Creating Marketing Content
Generate convincing iMessage mockups for social media ads or promotional materials.
Storyboard Development
Use the generator to create frames of conversations for video storyboards, including typing indicators and timestamps.
Product Mockups
Design product mockups that include realistic messaging interfaces to showcase app features.
How to install iMessage Mockup Generator
View source1. Install with the skills CLI
npx skills add gooseworks-ai/goose-skills/create-imessage-mockup --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by gooseworks-aicreate-imessage-mockup
Generate iMessage screenshots that look like real iOS captures — correct bubbles with tails, typing indicators, timestamps, "Delivered" captions, group avatars + sender names, keyboard chrome, and an optional iPhone 15 Pro bezel with Dynamic Island and status bar.
Purpose
Turn a structured thread JSON into a believable iMessage screenshot — first as standalone HTML (generate.js + templates/chat.css), then rasterized to PNG with headless Chromium (screenshot.js/render.js via Playwright). It is the atom you reach for when an ad, social post, or video scene needs a fake-but-convincing iOS message capture.
What it gets right, grounded in the renderer:
- Bubble runs and tails — blue
sentbubbles (right) and grayreceivedbubbles (left), with a curved tear-drop tail drawn only on the last bubble of each consecutive sender run (isLastOfRuningenerate.js). - Dark-themed iOS chrome —
theme: "dark"flips the page to the iOS dark conversation look; the status bar, Dynamic Island, and keyboard match iPhone 15 Pro. - Group affordances — group threads (
mode: "group") add per-sender colored avatar circles, sender names above the first bubble of a run, and a 4-tile group-header badge. - Beats for storyboards —
timestamppills, a static-but-mid-animationtypingthree-dot bubble,attachmentcards, and "Delivered"/"Read" captions let you stage individual frames of a conversation. - Three crops —
--minimal(bubbles only),--with-keyboard(header + iOS keyboard), and--with-iphone-frame(full bezel + Dynamic Island + status bar over a gradient backdrop).
The atom embeds no LLM — it is deterministic. The orchestrating agent is responsible for composing the thread JSON; the renderer only draws exactly what the JSON says.
When to use
- Need a fake iMessage screenshot for an ad, social post, video scene, or product mockup.
- Want a side-by-side hero image showing a conversation in an iPhone frame.
- Need a typing indicator or "Delivered" beat for a video storyboard.
If you're rendering programmatic graphic frames more broadly (cards, posters, infographics), use create-goose-graphics instead.
Inputs
The skill is deterministic — it does not embed an LLM. To translate a free-form prompt into a thread, the orchestrating agent (you) composes a JSON file matching the schema below, then invokes the renderer.
Thread JSON schema
{
"mode": "dm" | "group",
"title": "Karaoke Crew",
"participants": [
{ "id": "me", "name": "Me", "self": true },
{ "id": "sarah", "name": "Sarah", "color": "#FF9500", "initials": "S" }
],
"messages": [
{ "type": "timestamp", "label": "iMessage\nToday 9:41 AM" },
{ "type": "timestamp", "bold": "Sat, Jan 2", "light": "11:07" },
{ "type": "text", "from": "sarah", "text": "Did we crash it?" },
{ "type": "text", "from": "me", "text": "Couldn't withstand our friendship", "delivered": true, "read": false },
{ "type": "typing", "from": "sarah" }
],
"keyboard": { "leftIcon": "plus" }
}
mode—dmorgroup. If omitted, auto-detected from the participant count.participants[].self: truemarks the user (sent bubbles, no avatar).participants[].coloris the avatar background; defaults from a 6-color palette.participants[].initialsdefaults to the first letter ofname.messages[]:timestamp— centered pill. Uselabel(newline-separated bold/light) or explicitboldandlightfields.text— text bubble.delivered: trueon the last sent bubble in a run renders the "Delivered" caption (or "Read" ifread: true).typing— animated three-dot bubble (rendered as a static mid-animation frame for screenshot determinism).
keyboard.leftIcon—"plus"(default) or"camera".
CLI
node render.js --thread examples/group-with-frame.json --with-iphone-frame
node render.js --thread examples/dm-with-keyboard.json --with-keyboard
node render.js --thread examples/dm-minimal.json --minimal
node render.js --thread my-thread.json --with-keyboard --output ./my-exports/ --name nightout
Flags
| Flag | Effect |
|---|---|
--thread <path> | (required) JSON file matching the schema above |
--prompt "<brief>" | prints the schema and exits — agent must compose a thread.json and re-invoke |
--minimal | bubbles + timestamps only (no header, no keyboard, no frame) |
--with-keyboard | bubbles + iOS keyboard chrome (default) |
--with-iphone-frame | full iPhone 15 Pro bezel + Dynamic Island + status bar + soft gradient backdrop |
--dm / --group | force chat mode (otherwise auto-detected from participants) |
--name <slug> | override the output folder slug |
--output <dir> | parent dir for the dated output folder; default ./imessage-mockup-exports/ |
Frame flags are mutually exclusive.
Output
<output>/<YYYY-MM-DD>-<slug>/
index.html # full standalone HTML
screenshot.png # rendered PNG (DPR 3, "Retina")
thread.json # copy of the input for reproducibility
Default <output> is ./imessage-mockup-exports/ in the cwd.
Workflow
- Receive a prompt or existing thread JSON.
- If only a prompt was given: compose a thread.json matching the schema, save it.
- Run
node render.js --thread <path> [flag]. - Open the resulting PNG to verify the layout. If something looks wrong (clipping, wrong tail side, missing avatar), edit the thread JSON or the relevant template under
templates/and re-render.
Setup (one-time)
cd skills/ads/capabilities/create-imessage-mockup
npm install
npx playwright install chromium
Files
| File | Purpose |
|---|---|
render.js | CLI entry — parses flags, generates HTML, takes screenshot, writes outputs |
generate.js | Thread JSON → standalone HTML page |
screenshot.js | HTML → PNG via Playwright (chromium headless) |
templates/chat.css | All visual styling (bubbles, tails, keyboard, iPhone frame) |
templates/icons.js | Inline SVG icons (plus, camera, mic, signal, wifi, battery, chevron) |
examples/*.json | 6 reference threads exercising every flag combination |
tests/run-all.sh | Render every example into tests/output/ for visual review |
Testing
bash tests/run-all.sh
# inspect tests/output/<case>/<date-slug>/screenshot.png
The 6 cases cover: dm-minimal, dm-with-keyboard, dm-with-typing (camera-keyboard variant), dm-with-frame, group-with-frame, group-minimal.
Implementation pitfalls — do not re-introduce these bugs
These are mistakes that have already been made and fixed. If you modify the templates, do not undo them.
Bubble tail painting order
The iMessage tail in templates/chat.css is drawn with two pseudo-elements that both sit behind the bubble's background (z-index: -1 inside an isolation: isolate stacking context on .bubble):
::beforeis the colored bulge that extends past the tail-side edge.::afteris the page-color cutout that overlaps the bulge from outside, with a rounded corner that "carves" the tear-drop curve.
This works because ::after paints on top of ::before (later in source order = higher in paint order). In the overlap region the cutout wins, leaving only the curved tail tip of the bulge visible.
Do not swap these roles. If ::after is used for the bulge and ::before for the cutout, the cutout paints behind the bulge, so it does nothing — and the tail renders as a chunky rectangle with one rounded corner, not a curved tear-drop. This is how tails initially looked broken.
Do not remove isolation: isolate from .bubble without replacing it with another stacking-context trigger (z-index: 0, transform, etc.). Without a stacking context, z-index: -1 on the pseudo-elements will push them behind the page background, not just behind the bubble's own background, and the tail disappears entirely.
Tail vs. avatar overlap (group chats)
.avatar-slot has z-index: 3 and position: relative so it paints on top of the bubble next to it. This is required: without it, the bubble's tail (which extends ~7px to the left of the bubble for received messages) overlaps the avatar circle.
The avatar is a sibling of the bubble in the .row flex container, not a child of the bubble. The bubble's isolation: isolate does not contain it, so this stacking still works.
"Last bubble in a run" rule
Tails appear only on the last consecutive bubble from the same sender. Adding a tail to every bubble (or the first instead of the last) does not match iOS. The logic in generate.js walks the message list and sets isLastOfRun based on whether the next message is from the same from; do not change that without checking iOS reference screenshots.
Screenshot viewport
Modes use fullPage: true with a small initial viewport height (100px). This is intentional: Playwright extends the viewport to fit content but never shrinks it, so a small initial height + fullPage produces a tightly-cropped screenshot. Do not raise the viewport height to "make sure the screenshot fits" — that creates dead vertical space below the content.
The with-iphone-frame mode uses a fixed viewport (525×980) with fullPage: false because the frame itself defines the visible area; here we want the viewport to bound the screenshot to a single phone-sized rect.
Known limitations
- Image avatars not supported in v1 — only colored circle initials. Add an
avatarUrlfield and updatetemplates/chat.cssif needed. - Typing animation is static — captured as a mid-animation frame. The HTML itself does animate; only the PNG is frozen.
- No tapback reactions in v1 — schema reserves
{type: "reaction", target: <index>, kind: "heart"|...}but the renderer ignores it for now. - Emoji rendering depends on system fonts — Chromium ships with Noto Color Emoji on Linux/macOS; emoji should render but visually differ slightly from Apple Color Emoji.
Quality Checks
Before treating a render as final, verify against the iOS look:
- Output manifest — the output folder contains
index.html,screenshot.png, and a copiedthread.json(written byrender.js). - PNG dimensions —
minimalandwith-keyboardare 750px wide × DPR 3 = 2250px wide, with height growing to fit content (fullPage: true).with-iphone-frameis the fixed phone rect: 525×980 × DPR 3 = 1575×2940. Confirm withsips -g pixelWidth -g pixelHeight <png>(macOS) or any image tool. - Bubble sides + tails —
sent(self) bubbles hug the right and are blue;receivedbubbles hug the left and are gray. A tail appears only on the last bubble of each sender run — never on the middle bubbles, never on the first-of-run. - Group rendering — in
groupthreads each received run shows the sender's name above its first bubble and a colored avatar circle beside its last bubble; the group header shows up to 4 avatar tiles plus the title. - Captions — the final
sentbubble in a run withdelivered: trueshows a "Delivered" caption ("Read" ifread: true), and only that bubble. - Frame chrome (framed mode) — Dynamic Island is centered at the top, the status bar reads
9:41with signal/wifi/battery, and the phone sits on the soft gradient backdrop. - Typing / emoji / link beats —
typingrenders three dots in a received bubble; emoji-only messages render enlarged;[[link:CODE]]markers render as an underlined iOS link-detector span. - No renderer errors — the process exits 0 and prints the
✓ <png path>line.
The canonical visual review is bash tests/run-all.sh, which renders all six example fixtures into tests/output/ for side-by-side inspection.
Failure Modes
Known ways this atom breaks, and what they look like:
- Dependencies not installed —
screenshot.jsexits withplaywright not installed. Run npm install in the skill directory. Fix: run the one-timenpm install+npx playwright install chromiumfrom Setup. - Missing
--thread—render.jsprints help and exits non-zero;--promptalone prints the schema and exits2by design (the agent must compose athread.jsonand re-invoke). The atom never invents a conversation on its own. - Bad thread JSON — invalid JSON throws on
JSON.parse; afromthat doesn't match any participantidyields a bubble with no avatar/name (in groups) because the participant lookup misses. Keepmessages[].fromin sync withparticipants[].id. - Broken bubble tails — swapping the
::before/::afterroles or removingisolation: isolatefrom.bubbleintemplates/chat.cssmakes tails render as a chunky rectangle or vanish entirely (see Implementation pitfalls). Do not re-introduce. - Tail / avatar overlap in groups — dropping the
z-index: 3/position: relativeon.avatar-slotlets a received bubble's tail bleed over the avatar circle. - Dead vertical space — raising the small initial viewport height for
minimal/with-keyboarddefeats thefullPagetight-crop and leaves empty space below the content. - Mutually exclusive frame flags — passing more than one of
--minimal/--with-keyboard/--with-iphone-frameis ambiguous; the last one parsed wins. Pass exactly one. - Emoji/font drift — emoji render via the system emoji font (Noto on Linux/macOS), so glyphs differ slightly from Apple Color Emoji; this is a fidelity limit, not a crash.
Frequently asked questions about iMessage Mockup Generator
Similar skills
Excalidraw Diagram Generator
Transform natural language into Excalidraw diagrams.
Draw.io Diagram Generator
Easily create and validate draw.io diagrams.
Image Annotations
Easily annotate images with callouts and highlights.
Banner Design
Create stunning banners for any platform effortlessly.
Scientific Schematics
Generate publication-quality scientific diagrams effortlessly.
Infographics
Create professional infographics with ease and accuracy.
