TL;DR
Claude Code and Codex can build a website in minutes, but the result often looks generic and obviously AI-generated. Higgsfield's MCP and CLI put Nano Banana Pro and Seedance inside the agent loop, so your coding agent generates its own food imagery, hero video, and visual polish before it ships the site.
AI coding agents can scaffold a complete website in minutes, but the output has a tell: stock-photo placeholders, generic gradients, and layouts that look assembled rather than designed. The gap is not in the code - it is in the visual assets. An agent cannot reach for a hero image, a food shot, or a brand-consistent video the way a designer can.
The Developers Digest video on this workflow demonstrates the fix: wire an image and video generation platform into the agent loop so Claude Code, Codex, and friends generate the assets alongside the code. The video rebuilds a plain pizza shop website into a polished, mobile-friendly site with generated food imagery and a custom hero video, using Higgsfield's MCP server and CLI as the agent's creative backend. This post covers the actual setup - models, MCP, CLI commands, and the parallel workflow pattern - so you can apply it without watching the demo.
| Resource | URL |
|---|---|
| Higgsfield MCP and CLI page | https://higgsfield.ai/mcp |
| Higgsfield CLI (GitHub) | https://github.com/higgsfield-ai/cli |
| Higgsfield API docs | https://docs.higgsfield.ai |
| Google Gemini API image generation (Nano Banana Pro) | https://ai.google.dev/gemini-api/docs/image-generation |
| ByteDance Seed (Seedance) | https://seed.bytedance.com/en/ |
| Claude Code MCP documentation | https://code.claude.com/docs/en/mcp |
Default agent output is generic for a structural reason: the agent has no asset pipeline. It can write JSX and Tailwind all day, but when it needs a hero image it reaches for Unsplash-style stock, when it needs a logo it renders inline SVG, and when it needs motion it ships an animated gradient. Each of those choices is a content placeholder, and placeholders read as AI-generated to anyone who has seen a few AI-built sites.
The alternative is to treat generated media as a build dependency: the agent submits image and video jobs, waits for the results, and composites them into the site it is writing. That is what Open Design does for extracting an existing site's brand tokens, and what Higgsfield layers on top for producing the assets themselves. The two tools compose cleanly - a DESIGN.md from Open Design gives the prompt, Higgsfield produces assets that match it.
The video's core demo is a working example of the pattern. Starting from a simple pizza shop website, the agent:
The result is the same business, same menu, same content - but with assets that look commissioned. The key architectural point is that generation happens inside the agent's working session: the agent decides what images and video it needs, submits them, and waits for the URLs before finishing the build. No designer, no asset handoff, no waiting on a vendor.
Higgsfield is an image, video, audio, and 3D generation platform, and its MCP page frames the agent story directly: "Create images and videos directly from your prompts in any AI tool." The models commonly used in agent flows include:
The underlying API docs show the same catalog is accessible RESTfully: models such as higgsfield-ai/soul/standard (text-to-image) and higgsfield-ai/dop/standard or kling-video/v2.1/pro/image-to-video (image-to-video) accept a prompt, aspect ratio, and resolution, and return a request_id for async completion. Images go up to 4K and videos up to 15 seconds per the MCP FAQ, with 3D and audio jobs in the same request lifecycle.
From the archive
Aug 21, 2026 • 7 min read
Aug 21, 2026 • 8 min read
Aug 21, 2026 • 7 min read
Aug 21, 2026 • 9 min read
Higgsfield's MCP endpoint is https://mcp.higgsfield.ai/mcp. In Claude desktop or claude.ai you add it under Customize, then Connectors: name it, paste the URL, sign in, and the agent can generate directly. The page lists support for Claude (web, Cowork, and Claude Code), OpenClaw, Hermes Agent, and NemoClaw, and the FAQ is explicit that any MCP-compatible client can connect.
Two notes worth knowing before you wire it up:
Generation runs asynchronously - the agent submits and polls - and the FAQ notes you can browse your full generation history and reuse past outputs as inputs for iterative workflows.
For Claude Code, Codex, and other terminal agents, Higgsfield recommends the CLI, and the official GitHub repo documents it in detail. Install options are cross-platform:
# macOS / Linux
curl -fsSL https://raw.githubusercontent.com/higgsfield-ai/cli/main/install.sh | sh
# Homebrew
brew install higgsfield-ai/tap/higgsfield
# Cross-platform (including Windows)
npm install -g @higgsfield/cli
Authenticate once, then generate:
higgsfield auth login
higgsfield generate create nano_banana_2 \
--prompt "artisan pizza on a wooden board, overhead shot, warm bakery light" \
--aspect_ratio 16:9 \
--resolution 2k \
--wait
The README's examples show the same shape for video via Seedance 2.0 (job_set_type seedance_2_0), with flags for duration, resolution, mode, and genre:
higgsfield generate create seedance_2_0 \
--prompt "drone shot over a mountain valley at sunrise" \
--aspect_ratio 16:9 --duration 5 \
--resolution 4k --mode std --bitrate_mode high --genre noir \
--wait
The pattern that matters for coding agents: higgsfield generate create ... --wait blocks until the job finishes and hands back the asset URL, so a Claude Code or Codex process can fetch it and immediately reference it in a background: url(...), an <img src>, or a <video src> it is about to write. Job management is explicit - higgsfield generate get <job_id> and higgsfield generate wait <job_id> - and the CLI exposes the model catalog locally via higgsfield model list (nano_banana_2 maps to Nano Banana Pro, gemini_omni to Gemini Omni Flash, veo3_1 to Veo 3.1, and so on, across 40+ models in the README's tables).
The video's most interesting move (chapter 06:37) is dynamic workflows: instead of generating assets one at a time, the agent spawns multiple generation jobs in parallel - images and the hero video at the same time - and only builds the final site once every job has returned. For a landing page that needs four product shots plus a background video, that is roughly the difference between four sequential generations and one batch that completes in the time of the longest single job.
The CLI follows the same shape for repeatable flows: higgsfield workflow list discovers available workflows, higgsfield workflow get <name> inspects a workflow's parameters, and higgsfield generate workflow <name> --flags --wait runs one. The documented examples (draw_to_video, reframe, voice-change, dubbing) are video-centric, but the discovery pattern is the same one your agent would use to find, say, a "website" workflow before kicking off a build.
This is also where agent-native layering shows up in practice. A workflow like "pull the site, extract the content, generate the assets in parallel, then build" is exactly the kind of orchestration Claude Code's dynamic workflow support is designed to express - and it collapses a multi-hour design pass into a single agent run.
Use the asset-from-the-agent pattern when:
Skip it when:
For SaaS builders, the same loop scales into product: generate on-boarding art, social cards, or demo videos in the same run as the code, which is a decent chunk of what a Claude Code SaaS workflow needs anyway.
Watch How to Make Claude Code 10x Better at Design on YouTube to see the full makeover run in real time - the pizza shop before and after, the MCP and CLI setup from chapter 04:08, and the parallel asset generation in 06:37, which a screenshot cannot convey.
Not directly - Claude Code writes code and calls tools. But through an MCP server such as Higgsfield's (https://mcp.higgsfield.ai/mcp) or through the higgsfield CLI in a shell step, Claude Code can submit image and video generation jobs and use the returned URLs in the site it builds.
The MCP route exposes 30+ models including Nano Banana Pro, Seedance, Seedream, Kling, Veo, and Soul. The CLI README documents 40+ including Nano Banana Pro (nano_banana_2), Gemini Omni Flash, FLUX.2, Seedance 2.0 (seedance_2_0), Kling v3.0, Veo 3.1, and GPT Image 2, plus 3D and audio models.
No. The MCP connection authenticates with your Higgsfield account. API keys (a key ID and secret) exist for server-side REST access via Authorization: Key <id>:<secret> against platform.higgsfield.ai, and the docs warn to keep them server-side.
Images complete in seconds, videos take longer depending on duration and model. Generation is asynchronous - submissions return a request_id, and jobs move through queued, in_progress, and a terminal state (completed, failed, nsfw, or canceled). The CLI's --wait flag handles the polling for you, and the API docs recommend webhooks for production.
The video is an affiliate-style feature of Higgsfield, and this post covers the tool as demonstrated - no pricing details beyond credits are disclosed here. The platform is credit-based: each generation costs credits by model and resolution, and MCP usage draws from the same balance as the platform. For comparison, the raw model APIs (Nano Banana Pro via Gemini, Seedance via ByteDance) each bill separately if you call them directly.
Read next
Open Design lets you point Cursor or Claude Code at any live website and pull out a brand-ready DESIGN.md with colors, typography, spacing, and voice -- no manual extraction, no guesswork, all Apache-2.0.
8 min readClaude Code dynamic workflows turn orchestration into a JavaScript script that runs up to 1,000 agents per run - here is how scripts, schemas, budgets, and resume actually work.
10 min readAdrian Krebs scored 1,590 Show HN landing pages against 16 AI design patterns. 22% were heavy slop, 32% mild, 46% clean. Here is the pattern list, the method, and why it matters even when you are the one shipping.
7 min readTechnical content at the intersection of AI and development. Building with AI agents, Claude Code, and modern dev tools - then showing you exactly how it works.
A hosted infinite canvas your headless AI agents drive over MCP. Any MCP-speaking agent - Claude Code, Codex, Cursor, or...
View ToolMac app for running parallel Claude Code, Codex, and Cursor agents in isolated workspaces. Watch every agent work at onc...
View ToolAnthropic's agentic coding CLI. Runs in your terminal, edits files autonomously, spawns sub-agents, and maintains memory...
View ToolAnthropic's flagship reasoning model. Best-in-class for coding, long-context analysis, and agentic workflows. 1M token c...
View ToolEvery coding agent in one window. Stop alt-tabbing between Claude, Codex, and Cursor.
View AppTurn a one-liner into a working Claude Code skill. From idea to installed in a minute.
View AppDesign subagents visually instead of editing YAML by hand.
View AppConfigure Claude Code for maximum productivity -- CLAUDE.md, sub-agents, MCP servers, and autonomous workflows.
AI AgentsA practical walk-through of how to design, write, and ship a Claude Code skill - from choosing when to trigger, through allowed-tools, to the steps the agent will actually follow.
Getting StartedConfigure model, tools, MCP, skills, memory, and scoping.
Claude Code
Try Higgsfield: https://higgsfield.ai/s/higgsfield-general-campaign-developersdigest-juDMTi AI coding agents can build entire websites in minutes, but the default results often still look generic and...

Open Design: Open-Source n8n App That Turns Any Website into a Brand Kit, Design System, HTML + Images The video introduces Open Design, an MIT-licensed full-stack template that combines AI and n8n a...

Check out Zed here! https://zed.dev In this video, we dive into Zed, a robust open source code editor that has recently introduced the Agent Client Protocol. This new open standard allows...

Open Design lets you point Cursor or Claude Code at any live website and pull out a brand-ready DESIGN.md with colors, t...

Claude Code dynamic workflows turn orchestration into a JavaScript script that runs up to 1,000 agents per run - here is...

Adrian Krebs scored 1,590 Show HN landing pages against 16 AI design patterns. 22% were heavy slop, 32% mild, 46% clean....

How to go from idea to deployed SaaS product using Claude Code as your primary development tool. Project setup, feature...

A curated list of the Claude Code skills worth installing in 2026, with real install paths, what each one does, and how...

The late-July Codex and Claude Code updates point in the same direction: coding agents are competing on approval modes,...

New tutorials, open-source projects, and deep dives on coding agents - delivered weekly.