AI Learning
beginner ⏱️ 15 min read · 🎬 ~28 min video

Designing with Claude: From Prompt to Production

How Claude Design turns natural-language prompts into interactive prototypes, slides, and production-ready assets — and how to go from idea to shipped product in a single conversation.

This lesson is original educational writing based on this video by Anthropic (published May 22, 2026). All credit for the original content goes to the creators.

#productivity #design #prototyping
Video thumbnail: Designing with Claude: From Prompt to Production
Original video — all credit to the creators. Watch the original on YouTube ↗

1. What Claude Design actually is

Claude Design is an Anthropic Labs product that lets you describe visual work in plain language and get production-quality outputs — prototypes, slide decks, one-pagers, landing pages, and marketing collateral. It launched in April 2026 as a research preview powered by Claude Opus 4.7, Anthropic’s most capable vision model, and is included in Pro, Max, Team, and Enterprise plans at no additional cost.

The key word is working. Claude Design does not return a static image you’d need to redraw in another tool. It returns live HTML: clickable, theme-switchable, responsive, ready to hand straight to an engineer or to Claude Code.

Who it is for

The video frames two distinct audiences:

  • Designers — use Claude Design to explore widely and quickly. Generate ten directional concepts in the time it once took to polish one, then bring only the strongest direction into Figma for pixel-perfect work.
  • Non-designers (founders, product managers, marketers) — produce professional visual work without design expertise. A seed-stage founder can build a pitch deck; a PM can validate a concept with stakeholders before designer bandwidth becomes available.

2. Feeding Claude your brand

The biggest risk with any AI design tool is output that looks nothing like your product. Claude Design solves this with a design system extraction step that runs once and then applies automatically to every subsequent project.

Three ways to onboard your brand

Input methodBest forWhat Claude extracts
Paste a product URLExisting live productColors, typography, spacing, UI patterns
Upload style-guide files (PDF, FIGMA, DOCX)Teams with formal brand docsExact tokens and component rules
Link a code repositoryProduct with a component libraryReact/Vue/Svelte components, design tokens, CSS variables

The repo integration is the most powerful option. When Claude reads your actual Button, Card, and Modal components it generates prototypes that don’t just look like your product — they use the same structural patterns, so the handoff to engineering is nearly lossless.

Product URLweb captureStyle FilesPDF · PPTX · DOCXCode RepositoryReact · Vue · SvelteDesign Systemcolors · type · spacingcomponents · tokensPrototypeSlide DeckOne-PagerSet up once — every project inherits automatically
Claude Design extracts your brand from three sources — URL, files, or codebase — and stores a persistent design system that every project inherits automatically.

3. The four-step prompt-to-production workflow

Once your brand is loaded, every piece of visual work follows the same loop.

Step 1 — Input your vision

Claude Design accepts many starting points beyond a text prompt:

  • Plain-language description — “Design a mobile meditation app with a calming aesthetic, dark background, and gentle gradients”
  • Uploaded document — paste in a product requirements doc and ask for the matching UI
  • Screenshot or reference image — “Redesign this screen with better hierarchy”
  • Web capture — link a competitor’s page and ask for an alternative concept

The more constraints you provide, the more on-target the first draft. The video’s advice: include at minimum a target audience, a platform or device, and one visual mood word (serene, bold, minimal, playful). These three things compress the solution space dramatically.

Step 2 — Generate an initial version

Claude produces a working HTML artifact in seconds. It is already interactive:

  • Click targets work
  • Dark-mode toggle is built in
  • Responsive breakpoints are applied
  • Any animations or transitions run live

You are not looking at a mockup of a product. You are looking at a working prototype.

Step 3 — Refine through conversation

The dual-pane interface (chat left, canvas right) supports three refinement modes:

  1. Conversational — “Make the hero section bolder. Increase the font size and add more whitespace.” Changes apply to the whole artifact.
  2. Inline comments — click any element on the canvas and leave a note, just like a Figma comment. Claude reads them and applies changes.
  3. Tweaks panel — sliders for spacing, padding, color intensity, and typography scale. No re-prompting required for minor adjustments.

Real-world example from the video: Brilliant (the learning platform) reduced the number of prompts needed for complex page designs from more than twenty interactions down to two after their codebase was linked as the design system source.

Step 4 — Export strategically

Export formatWhen to use
HTMLHand off to Claude Code for production implementation
PPTXWhen the artifact feeds into a PowerPoint-native workflow
CanvaWhen external stakeholders need to edit or polish collaboratively
PDFRead-only stakeholder review; board decks
Shareable URLInternal team review without a tool install

The HTML export is the key to production: it contains the design intent — the visual structure, spacing, and component relationships — in a form Claude Code can read and transform into production components.

Check your understanding

3 questions · your answers are saved in this browser only

  1. 1. What does Claude Design output by default when you generate a prototype?

  2. 2. Which input method gives the most accurate, production-ready results from Claude Design?

  3. 3. What is the recommended minimum information to include in a first prompt?

4. The Claude Code handoff

The most powerful part of Claude Design is not the design itself — it is what happens when you hand it to Claude Code.

The workflow is a straight line:

  1. In Claude Design, export your prototype as HTML.
  2. Open Claude Code in your project’s repository.
  3. Paste the HTML or drag it into the session. Prompt: “Implement this prototype as production React components using our existing design system.”
  4. Claude Code reads the HTML structure, cross-references your actual component library, and writes production code that matches both the visual design and your codebase conventions.

This is what the video means by “prompt to production”: you started with a sentence. You now have working production code, deployed through your normal CI pipeline. No design-to-developer translation loss.

What makes the handoff work

The handoff quality depends on how well the design system was set up. When the same codebase powers both the design-system extraction and the Claude Code implementation, the two ends of the pipeline speak the same language. Claude Design uses Button the same way your repo does because it read your Button component.

Teams that skip the codebase-link step find the handoff works well for layout and visual structure but requires more engineering judgment on component selection. Still faster than spec docs — just not as seamless.

5. Prompt patterns that work

The video covers several recurring prompt structures that consistently produce better results. Here they are distilled into reusable templates.

The constraint-first prompt

Instead of describing what you want, describe who uses it and what they need to feel:

“Design a [artifact type] for [audience] on [platform]. The visual mood should be [mood word]. Key action the user takes: [primary CTA].”

Example:

“Design a mobile onboarding flow for a sleep-tracking app for busy professionals. Mood: calm, clinical precision. Primary action: connect a wearable device.”

The iteration prompt

After the first draft, avoid vague feedback. Reference specific regions:

“The hero section feels cluttered. Increase line height, reduce the number of items in the first fold to three, and shift the primary button to be more visually prominent.”

The exploration prompt

When you want multiple directions rather than one refined output:

“Give me three distinct visual directions for this landing page: one minimal and typographic, one bold and image-led, one warm and community-focused. Keep the layout structure the same across all three.”

This replaces the traditional design agency “diverge” phase and can run in a single conversation.

The handoff prompt (to Claude Code)

“Here is an HTML prototype of our new dashboard overview screen. Implement it as production React components. Use our existing Card, MetricTile, and DataChart components where they fit. Flag anywhere the prototype implies a component we haven’t built yet.”

Check your understanding

2 questions · your answers are saved in this browser only

  1. 1. When handing off a Claude Design prototype to Claude Code, which export format should you use?

  2. 2. A design team wants to generate 10 visual directions for a new product page in one session. Which prompt pattern fits best?

6. Fitting Claude Design into your existing workflow

Claude Design works alongside tools you already use — it does not replace the whole design pipeline.

With Figma

Use Claude Design for the prompt-to-prototype phase: rapid exploration, stakeholder validation, and direction selection. Once a direction is chosen and approved, import it into Figma for pixel-perfect refinement, design systems management, and engineering handoff through the traditional spec-doc workflow. The two tools are complementary, not competing.

With Canva

Export directly from Claude Design to Canva when external collaborators — clients, agencies, contractors — need to make edits without a Claude subscription. Canva’s publishing and template system handles the last-mile distribution.

With your document tools

Claude Design is not a document editor. If you need to start from an existing document (a brief in DOCX, a competitor analysis in PPTX), upload it as input and Claude will produce the visual work from the document’s content. The document and the design stay as separate artifacts.

Real-world impact (from the video)

  • Datadog reduced what had been a week-long design process for certain page types to a single conversation.
  • Brilliant reduced their per-page prompt count from 20+ to 2 by connecting their codebase as the design system source.
  • Small teams and solo founders used Claude Design to produce investor pitch decks at presentation quality without any dedicated design resource.

Check your understanding

1 question · your answers are saved in this browser only

  1. 1. According to the video, what happened to Brilliant's per-page prompt count after connecting their codebase?

Build it yourself

Follow these exact steps to reproduce it yourself · estimated time: ~20 min

Prerequisites

  • A Claude Pro, Max, Team, or Enterprise subscription
  • Access to claude.ai/design (rolling out to plan subscribers)
  • Optionally: a product URL, style-guide PDF, or code repository URL for brand setup

Step 1 — Open Claude Design

Navigate to claude.ai/design. You will land on the new project screen. If the Design tab is not visible yet, check that your account is on a qualifying plan (Pro or above) — rollout is gradual.

Click Brand Setup before creating your first project. Pick the input that fits your situation:

  • Paste a URL — your live product or marketing site. Claude’s web capture reads colors, typography, and layout patterns from the rendered page.
  • Upload files — drop in a brand guide PDF or an existing slide deck. Claude reads guidelines and infers tokens.
  • Link a repository — paste a GitHub or GitLab URL. Claude reads your component library and design tokens. This is the highest-quality option if your repo is accessible.

Save the design system. It now applies to every project automatically.

Step 3 — Create your first prototype

Click New Project and choose “Prototype.” In the prompt box, write a constraint-first prompt following this template:

Design a [artifact type] for [audience] on [platform/device].
Mood: [one adjective].
Primary action: [the thing the user does].

Example:

Design a mobile dashboard for a freelance invoicing app, for
solo consultants on iOS. Mood: clean and professional.
Primary action: create a new invoice.

Press Generate and wait a few seconds.

Step 4 — Explore the generated prototype

In the canvas panel (right side):

  • Click any element to test interactivity
  • Toggle the device-preview selector (mobile / tablet / desktop)
  • Turn on dark mode using the theme switcher at the top of the canvas

Spend a minute just clicking around before you start refining. Identifying what works (and what does not) while looking at the live prototype is faster than reading about it.

Step 5 — Refine with inline comments

Click any element on the canvas that you want to change. A comment bubble appears. Type a targeted instruction:

Make this heading larger. Reduce the number of items in this list to three.
Increase the contrast on this button.

Apply all comments at once with the Apply feedback button. Claude processes all inline notes in a single pass.

Step 6 — Export and hand off

Once the prototype is in good shape:

  1. Click Export in the top-right corner.
  2. Select HTML if you plan to hand it to Claude Code.
  3. In Claude Code, open your repository and start a new session. Prompt:
Here is an HTML prototype of [screen name].
Implement it as production [React / Vue / Svelte] components.
Use our existing [ComponentA], [ComponentB] where they fit.
Flag anywhere the prototype implies a component we haven't built yet.
  1. Review Claude Code’s output, run your tests, and ship.

Expected result: A working component that visually matches your prototype and follows your existing codebase conventions. If Claude Code flags missing components, build those first (or ask Claude Code to scaffold them) then re-run the handoff prompt.

Where to go next

Related lessons

beginner 🎬 Anthropic · ~2 min

Introducing Claude Design by Anthropic Labs

Claude Design is a new Anthropic Labs product that lets you collaborate with Claude to create polished visual work like prototypes, slides, one-pagers, and more.

#design #productivity #claude-ai
beginner 🎬 Anthropic · ~2 min

How Anthropic's GTM Engineering Team Uses Claude

Sales reps drown in administrative work — digging through scattered documentation to answering customer emails late into the night. Jared Sires, GTM Product Manager, shares how he went from account prep to customer follow-ups with Claude.

#productivity #enterprise #case-study
intermediate 🎬 Anthropic · ~4 min

How Anthropic's Security Team Uses Claude

Security teams drown in alerts, jumping between tools and query languages for every investigation. Jackie Bow, Technical Lead on Anthropic's Detection Platform Engineering team, shares how her team uses Claude to unify security signals and speed up threat investigation.

#security #enterprise #productivity