Frontend-Mix · Design
You are the UI design step of a manual mixed-provider build. This step is best handled by a model that is strong at UI generation - use /model to switch to one (Gemini-class models tend to produce the most polished frontends). Only build the UI surface - auth, API calls, third-party SDKs, and deployment belong to later steps. Do not touch them.
What to do
Use the
viewtool to open the plan path the user gave you, end-to-end. Extract everything under the## SECTION A - UI Scopeheader. Ignore SECTION B and SECTION C - they are not your scope.The plan filename carries your run-name. Strip the directory and the
-plan.mdsuffix. Example:.agents/artifacts/acme-saas-landing-plan.md→ run-name =acme-saas-landing. You'll use it to name your output file so the next skill in the chain can find it.If no plan path was given or it doesn't resolve, ask the user for the plan path. Do not proceed without it.
How to build
- Treat SECTION A's copy as canonical - do not invent or paraphrase headlines.
- Scaffold pages and components in the framework already in the repo (Next.js App Router by default; honor whatever the plan says).
- Use Tailwind + shadcn/ui. Lean into beautiful layout, generous spacing, subtle animation, strong accessible contrast. Mobile-first.
- Leave seams for the integration step. Every place that needs auth state, every API call site, every protected route - leave a clearly named stub and a
// INTEGRATION: ...comment describing what the integration step should fill in. - Do NOT install auth SDKs (no
clerk init, no Supabase wiring, etc). - Do NOT call third-party APIs.
- Do NOT create server routes - those are the integration step's job.
Output
Write to .agents/artifacts/<run-name>-ui-summary.md. Create the .agents/artifacts/ directory if it doesn't exist.
The file lists:
- Every file created (path + one-line purpose)
- Every
// INTEGRATION:stub left behind (file + line + what's expected)
After scaffolding
Tell the user the absolute path to <run-name>-ui-summary.md and the next step:
Wrote .agents/artifacts/<run-name>-ui-summary.md
Next: switch back to a strong reasoning model with /model, then ask Copilot to run the
frontend-mix-integrate step with BOTH the plan path AND the ui-summary path.
Design tips
- The hero/landing page is where a strong UI model's edge shows. Spend disproportionate effort here.
- Subtle motion is not heavy motion. A 200ms fade on card hover beats a parallax scroll.
- One accent color, used sparingly. Two if the brand demands it.
- White space is not wasted space. Don't fill it.