Early access: your personal sandbox is free, with $5 in model credits included. AQ adds no markup on your model usage. Start free

aq.dev / guides / designers-building-with-ai-coding-agents

Designers Building With AI Coding Agents: The 2026 Guide

Designers build with AI coding agents through three routes in 2026: prompt-to-app tools that turn a written description into a working prototype (Figma Make, v0, Lovable), agent CLIs that work inside the team's actual codebase (Claude Code, Codex, Cursor Agent), and team harnesses that put those CLIs behind a browser so nobody has to set up a terminal. The routes are not interchangeable. Prompt-to-app tools are the fastest way to explore an idea, but they generate code outside your repository, so anything that survives gets rebuilt by an engineer. Agent CLIs change the real product, using your real components, and the result ships as an ordinary pull request. This guide covers when each fits, staying safe in a production codebase, and the feedback loop that makes designer-built work reviewable.

Why building is now part of the design job

The deliverable is shifting. A static mock answers "what should this look like," but the questions that kill products live downstream: how does this feel with real data, real latency, and real edge cases. An interactive prototype answers those, and AI coding agents have collapsed its cost from days of engineering time to a conversation. Teams increasingly expect designers to show up with something clickable, and arguing from a working artifact beats arguing from a picture of one.

The trap is stopping at "clickable." A prototype built outside the codebase proves the concept and then dies, because nothing in it maps to the components and constraints of the real product. The designers getting the most leverage are the ones who graduate to changes in the actual repository, where the distance from "looks right" to "shipped" is a code review, not a rebuild.

Route 1: prompt-to-app tools (throwaway on purpose)

These tools need no setup and no repository access, which makes them the right starting point for pure exploration.

The shared limitation is structural. These tools generate their own stack in their own environment. Your design system's components, API shapes, and product constraints are not there, so the prototype drifts from reality the moment it gets specific. Fine for validating a concept; expensive when stakeholders mistake the prototype for something nearly shipped.

Route 2: agent CLIs in the real codebase

Claude Code and Codex are terminal agents: they read the repository, edit files, run commands, and iterate against real build errors. For a designer this changes what "prototype" means. Instead of a lookalike in a separate tool, you get a branch of the actual product where your change uses the real button component, the real spacing tokens, and the real data. Engineers review a diff instead of reverse-engineering a mock.

Design context can come along too. Figma's MCP server, as of August 2026, gives agentic coding tools (Claude Code, Cursor, Copilot in VS Code, and others) structured access to design data: components, variables, and layout information, rather than a screenshot to guess from. A designer can point the agent at a frame and ask for the change in code that matches it.

What this route requires is less than its reputation suggests, but not zero:

The honest blocker for most designers is none of these. It is the local environment itself: installing CLIs, authenticating them, keeping a laptop awake through a long session, and asking for help when the setup breaks. That, not the ability to direct an agent, is where most attempts stall.

The feedback loop: previews and comments

However the change gets built, designer-built work earns trust through the same loop: a running preview that other people can open, and feedback attached to the thing itself rather than to a screenshot in a chat thread. Vercel's preview deployments are the best-known pattern here: as of August 2026, teammates can pin comments directly on the preview page by default, and external reviewers can be granted access to view and comment through share settings on paid plans.

The loop matters because agent work defaults, in practice, to being solitary. A July 2026 LeadDev analysis of 25,264 agent-generated pull requests across 2,361 popular GitHub repositories found that in 79 percent of agentic PRs the same developer both reviewed and modified the agent's contribution, and only about one in eight workflows involved multiple humans. A designer building alone with an agent, unseen until a finished PR appears, is the same failure mode with a different job title. Previews, comments, and early visibility keep the work a team activity.

Picking a route

You want toBest routeWhat ships
Explore an idea in an afternoonFigma Make, v0, or LovableA shareable prototype, rebuilt if adopted
Propose a change to the live productAgent CLI on a branch of the real repoA pull request an engineer reviews
Ship a standalone tool or micrositePrompt-to-app with deployment (v0, Lovable)The generated app itself
Make building-in-the-codebase a team normA shared harness around agent CLIsPRs, plus visibility for everyone else

A useful default: explore in a prompt-to-app tool, and the moment an idea is worth a stakeholder's time, rebuild it as a branch in the real codebase. That version is the one that can become true.

Where AQ fits

AQ is the multiplayer coding harness where engineering teams run AI coding agents like Claude Code and Codex together: shared live terminals, a code editor, and app previews, in your own cloud. For designers, AQ is route 2 without the part that stalls it: the local environment. Agents run as real CLIs in persistent tmux sessions on the team's VM and stream to the browser, so a designer opens a workspace on macOS, Windows, Linux, or a phone, with nothing to install, and the session survives a closed laptop.

The safety rails from this guide are the default rather than discipline. Every workspace gets its own isolated git worktree on a fresh branch (named ai/{id}-{slug}) with dependencies installed automatically, so a designer's experiment cannot collide with anyone else's work, and a one-click rebase keeps it current with main. The feedback loop is built in: each workspace gets a live dev-server preview with a shareable link that works without an account for viewing, and comments pinned on the preview can be sent to the agent as prompts. Teammates can attach screenshots to those comments; outside reviewers (a client, a founder, a user) comment through a review link after a quick email sign-in, without attachments. When the work is ready, the agent commits, pushes, and opens the PR under the designer's own GitHub auth, and the workspace tracks it. And because teammates can open the same workspace and watch the same live session, the designer-with-an-agent is never invisible: an engineer can look in mid-flight, and, if the owner approves a control request, type into the session directly. The previews and comments docs cover the loop in detail, and the whole-team guide covers rolling this out beyond engineers.

Pricing is two plans. Free is a personal sandbox for one person: AQ creates a private machine in an isolated network, nothing to install, no time limit, which is enough for a designer to try the workflow solo. Team is $50 per user per month in early access (standard $200, billed monthly), covers VMs you connect from your own cloud or a dedicated always-on AQ-managed VM in its own isolated network, and your rate is locked for your first 12 months. Inviting a teammate costs nothing until that person accepts and joins.

Plainly: if you are exploring ideas that will be rebuilt anyway, the prompt-to-app tools above are excellent and you do not need AQ. AQ earns its place when designers should be building in the real codebase and the terminal, the environment setup, and the visibility gap are what is stopping them.

Frequently asked questions

Can a designer use Claude Code without knowing how to code?

Yes, for real but bounded work. Claude Code takes plain-language instructions, reads the codebase, and makes the edits itself; a designer who can describe the change precisely (which screen, which component, what behavior) can get far without writing code. Reading a diff well enough to sanity-check it helps, and an engineer should still review the resulting pull request. The practical barrier is usually the terminal setup and a working dev environment, not the conversation with the agent.

Should designers prototype in a separate tool or in the production codebase?

Both, in sequence. Prompt-to-app tools like Figma Make, v0, and Lovable are fastest for exploring whether an idea is worth pursuing, and their output is disposable by design. Once an idea earns real consideration, rebuild it as a branch in the actual repository with an agent CLI: that version uses your real components and real data, and it can ship through an ordinary code review instead of an engineering rebuild.

How do designers share AI-built prototypes for feedback?

Share a running preview, not screenshots. Prompt-to-app tools publish to a URL (Figma Make and v0 both support this as of August 2026). For work in the real codebase, preview deployments with pinned comments (Vercel's pattern) keep feedback attached to the live UI. AQ builds this into every workspace: a dev-server preview with a share link that is viewable without an account, and pinned comments that can be sent to the agent as its next prompt.

Do designers need a local development environment to build with AI coding agents?

For prompt-to-app tools, no: they run entirely in the browser. For agent CLIs in a real codebase, traditionally yes, and that setup (installing tools, authenticating CLIs, running the dev server) is where most designers stall. A shared harness removes that requirement: with AQ the CLIs run on the team's VM and the designer works from a browser tab, with the dev server preview already wired up.

What is the difference between Figma Make and an AI coding agent like Claude Code?

Figma Make generates a self-contained prototype in Figma's environment from prompts and designs; it is built for exploration and stakeholder demos, and as of August 2026 it can share previews and publish to a URL. Claude Code is a general coding agent that works inside any repository you point it at: it edits your team's actual product using your actual components. Make answers "is this idea right," an agent in the codebase answers "here is the change, ready for review."