CLAUDE LABJP
FORK — Claude Code 2.1.212 changes what /fork does: it copies your conversation into a new background session with its own row in claude agents, so you can keep working. The old in-session subagent is now /subtaskLIMITS — WebSearch calls are now capped at 200 per session by default, and subagent spawns get the same 200 ceiling, so a runaway search or delegation loop stops on its ownMCPBG — MCP tool calls running past two minutes now move to the background automatically, keeping the session usable. Tune the threshold with CLAUDE_CODE_MCP_AUTO_BACKGROUND_MSPLANFIX — Fixed plan mode auto-running file-modifying Bash commands such as touch and rm without a permission prompt or an SDK canUseTool callbackSONNET5 — Claude Sonnet 5 is running on introductory pricing of $2 per million input tokens and $10 per million output. After August 31 it moves to $3 and $15IPO — Bankers are reportedly lining up investor meetings for Anthropic ahead of a possible public listing as soon as OctoberFORK — Claude Code 2.1.212 changes what /fork does: it copies your conversation into a new background session with its own row in claude agents, so you can keep working. The old in-session subagent is now /subtaskLIMITS — WebSearch calls are now capped at 200 per session by default, and subagent spawns get the same 200 ceiling, so a runaway search or delegation loop stops on its ownMCPBG — MCP tool calls running past two minutes now move to the background automatically, keeping the session usable. Tune the threshold with CLAUDE_CODE_MCP_AUTO_BACKGROUND_MSPLANFIX — Fixed plan mode auto-running file-modifying Bash commands such as touch and rm without a permission prompt or an SDK canUseTool callbackSONNET5 — Claude Sonnet 5 is running on introductory pricing of $2 per million input tokens and $10 per million output. After August 31 it moves to $3 and $15IPO — Bankers are reportedly lining up investor meetings for Anthropic ahead of a possible public listing as soon as October
Articles/Claude.ai
Claude.ai/2026-05-04Beginner

Getting Started with Claude Design — Access, Prompts, and What Actually Works

A practical guide to accessing Claude Design's research preview, understanding how it differs from regular Claude chat, and the prompt patterns that actually produce good output.

Claude Design8UI generationprototypingresearch previewAnthropic13

Right after Claude Design launched, my first problem wasn't "what can it do?" — it was "how do I even get in?" There's no obvious sign-up button on Anthropic's homepage, no waitlist confirmation email I could find. It just showed up in my sidebar one day, and I started poking at it.

If you searched "how to use Claude Design" and landed here, you're probably in the same boat. This post skips the hype and covers the things that actually matter for getting started: how to access it, what makes it different from just asking Claude to write HTML, and the prompt patterns I've found that consistently produce better output.

How to Access Claude Design

As of May 2026, Claude Design is rolling out gradually to Claude accounts. There are two ways to reach it:

Option 1: The sidebar in claude.ai

If "Design" appears in your left sidebar, click it and you'll land directly in the Design interface. If it's not there, the rollout hasn't reached your account yet — or you may need a Pro subscription, since Claude Design runs on Claude Opus 4.7 under the hood.

Option 2: Direct URL

Try navigating to claude.ai/design. If your account has access, it loads the interface directly. A 404 means you don't have access yet.

One important note: Claude Design is not a standalone product. It's a specialized interface powered by the claude-opus-4-7 model, which means a Pro (or higher) subscription is effectively required. The research preview is free to access once your account is enabled — you're not billed separately for Design sessions — but the model requires a Pro plan to run.

What Makes It Different from Just Asking Claude to Design Something

This is the most common question I hear, and it's entirely fair. Before Claude Design launched, I was already generating HTML prototypes in regular Claude chat. So what's the actual difference?

Design system consistency

When you generate HTML in regular chat, each response has slightly different design decisions — colors drift, spacing shifts, typography choices wander. Claude Design builds an internal design system before generating markup, so the visual language stays coherent even as you iterate over multiple exchanges. This sounds like a small thing, but in practice it means you can ask for "the same design but with a dark mode" or "another section that matches the style of what we already built" and actually get something that looks like it belongs together.

Multiple export formats from a single result

The output isn't just code you copy and paste. From a single generated design, you can export to ZIP, PDF, PPTX, standalone HTML, or hand off directly to Claude Code. That last option is particularly useful — the design gets a public URL at api.anthropic.com/v1/design/h/<hash> that you can pass to Claude Code to continue the implementation without leaving the Anthropic ecosystem. This is genuinely different from the "generate code, copy it, paste it into your editor, fix the broken parts" loop I used to follow. I wrote more about this handoff workflow in the Claude Design → Claude Code production guide.

Visible build process

Unlike v0 or Lovable, which present polished output without explanation, Claude Design shows you its reasoning and build steps. This means the output is more like a reviewable artifact than a magic result — you can see why a layout decision was made, and you can correct it precisely rather than hoping the next attempt randomly improves.

Prompt Patterns That Actually Produce Good Output

After about a month of regular use, these patterns have reliably improved output quality.

Pattern 1: Purpose → Audience → Tone, in that order

# Vague — usually disappointing
"Make a nice landing page for my app"

# Specific — reliably better output
Purpose: Pre-launch landing page for an iOS app, used for ad testing before App Store review
Audience: Parents in their 30s looking for a time-saving app they can use during childcare
Tone: Warm but trustworthy. Not overly playful.
Key elements: Hero with iOS device mockup, 3 feature highlights, download CTA

Words like "cool" and "modern" are nearly meaningless as prompt inputs. "Who sees this and why" gives the model something concrete to work from. The order matters too — purpose first anchors everything else, and the tone guidance at the end prevents the model from defaulting to generic SaaS aesthetics.

Pattern 2: State what you don't want first

Your taste is often easier to define by exclusion than by description. Designers do this too — they call it defining constraints before generating solutions.

Please avoid:
- Blue gradients (too generic SaaS feel)
- Icon-heavy layouts (max 2 per section)
- Monochromatic palette (I need warmth and approachability)

With those constraints, create an onboarding screen for a mental health app.

Front-loading the negatives consistently reduces the number of iteration rounds. I've found that stating even one clear exclusion sharpens the output noticeably.

Pattern 3: Reference URL + delta instruction

You can paste a URL as a starting point, then describe only what should change.

reference: https://example.com
Keep the color system and typographic hierarchy from that site, but change the layout 
to single-column and remove the top navigation entirely. Optimize for mobile-first viewing.

Claude Design can read web content, and giving it a reference you actually like means you're not starting from scratch. I often reference my own site to maintain consistent brand tone across new pages I'm generating. The key is being explicit about what to keep and what to change — if you just paste a URL without a delta, the model tends to recreate the reference rather than build on it.

Pattern 4: Component-first, page-second

For complex layouts, generating individual components before assembling them works better than requesting a complete page in one shot.

Step 1: "Design a pricing card component — 3 tiers, monthly/annual toggle, highlight the middle tier"
Step 2: "Design a testimonials section that uses the same visual language as the pricing card"
Step 3: "Assemble these components into a full pricing page with a hero header"

This approach lets you validate each piece before committing to the whole layout, and the assembled result is more coherent because each component shares context from the same session.

A Real Example: Building an App Store LP in Under 10 Minutes

To give this some context, here's what the actual workflow looked like when I used Claude Design to build a simple landing page for a recent app update.

My starting prompt:

Purpose: App Store promotional page for a wallpaper app update (iOS/iPadOS)
Audience: Existing users receiving a push notification, so they already know the app
Goal: Showcase the new AI-powered categorization feature, drive them to update
Tone: Clean, visual-forward — the wallpapers should be the hero
Avoid: Text-heavy layouts, dark backgrounds (the wallpapers are dark enough)
CTA: Single button — "Update Now"

First output: A reasonable hero-focused layout with a large device mockup placeholder and minimal copy. Not perfect, but the proportions and visual hierarchy were right.

My follow-up: "Increase the visual weight of the 'before/after' comparison section. Right now it looks like a footnote — it should feel like the main reason to update."

Second output: The comparison section expanded to full-width, with a clear visual split and a subtle caption explaining what changed. Total time: about 8 minutes including reading and deciding on the follow-up.

For a standalone marketing page where I didn't want to open Figma, this was genuinely useful.

Where It Works Well, and Where It Doesn't

Situations where Claude Design fits naturally:

  • App Store screenshot pages and simple marketing LPs (no Figma needed)
  • One-page documents for investors, grants, or pitch decks
  • Quick first drafts to establish visual direction before refining elsewhere
  • Prototypes to share with collaborators for early alignment

Situations where regular design tools still win:

  • Building and managing a reusable component library
  • Multi-screen app flows that require maintaining state and transitions
  • High-fidelity design specs intended for handoff to production designers
  • Anything requiring precise pixel control or custom animation specs

Honestly, Claude Design isn't a Figma replacement in its current form. It's closer to a first-draft accelerator — the place where you spend 10 focused minutes generating 6 layout directions before committing to one. From there, the actual refinement for complex work still happens in dedicated tools.

Where to Go from Here

If you have access, the best next step is to pick something specific you're already working on and describe a single screen. Not "design me an app" — something like "design the subscription screen for my iOS habit tracker, targeting adults who've tried free apps and are ready to pay for something genuinely better."

Specificity is the most important variable. One focused attempt will tell you more about whether Claude Design fits your workflow than anything you read about it — including this post.

For the next step after getting output you like, the Claude Design to Claude Code handoff guide walks through how to take a generated design into production implementation without losing the design context.

Share

Thank You for Reading

Claude Lab is ad-free, supported entirely by members like you. We publish practical guides daily with implementation code, benchmarks, and production-ready patterns. If you've found it useful, we'd love to have you on board.

  • Copy-paste ready implementation code
  • New advanced guides published daily
  • $5/mo or $10 for lifetime access
View Membership →

If you found this article helpful, a small tip ($1.50) would mean a lot to us. Your support helps keep this site ad-free and covers server and hosting costs.

Related Articles

Claude.ai2026-07-09
Claude Card Declined: A Complete Troubleshooting Guide for Pro, Max, and API Users
When Claude tells you 'Your card was declined,' the cause is rarely obvious from the error text alone. This guide separates the three layers where a decline actually happens — your issuing bank, Stripe's fraud engine, and Anthropic's account state — and walks you through fixes plus fallback payment methods that almost always get the charge through.
Claude.ai2026-06-19
Pointing Claude Design at Your Codebase: Closing the Design-to-Implementation Loop Solo
The June 17 update lets Claude Design start from your local codebase, so generated assets reflect your existing components. Here is how I wire code-grounded generation into maintaining four sites' UI alone as an indie developer.
Claude.ai2026-05-23
Reading Claude Design and Figma Make Side by Side: What Survives When 'Pixels' Stop Being the Work
I have been feeding the same design system and PRD into Claude Design and Figma Make on screens from my own app business. Here is how the two outputs differ in character, and where the designer's job actually moves when generation costs go to zero.
📚RECOMMENDED BOOKS
Build a Large Language Model (From Scratch)
Sebastian Raschka
LLM Dev
Prompt Engineering for LLMs
Berryman & Ziegler
Prompting
AI Engineering
Chip Huyen
AI Eng
* Contains affiliate links
See all →