Build Interactive 3D Worlds With GPT-6 & Blender
TL;DR
GPT-6 Astra built a complete yoga clothing store from one prompt in the latest Developers Digest video - generated product photography, click-through product pages, and a custom AI video hero, wired through Codex and the Higgsfield CLI. Here is the verified workflow from the docs, plus how Genjutsu re-versions a single video for every market.
A coding agent can scaffold an entire storefront in minutes. What it cannot do is take product photos, shoot a hero video, and re-version that video for a second market without a shoot. That asset layer is the real cost of a modern e-commerce site, and it is exactly the gap OpenAI's GPT-6 Astra build video attacks: one prompt becomes a full yoga clothing store, generated product photography becomes click-through product pages, and a custom AI video hero goes on the home page - with the whole pipeline driven from Codex and the Higgsfield CLI. This post walks the workflow with the verified commands from the docs, so you can reproduce the pattern without watching the demo.
| Resource | URL |
|---|---|
| Higgsfield CLI (GitHub repository) | https://github.com/higgsfield-ai/cli |
| Higgsfield Genjutsu presets | https://higgsfield.ai/higgsfield-genjutsu-presets |
| Higgsfield MCP and CLI page | https://higgsfield.ai/mcp |
| Higgsfield API docs | https://docs.higgsfield.ai |
Higgsfield Supercomputer powered by GPT-6 Astra (openai/gpt-6-astra) | https://higgsfield.ai/supercomputer?model=openai/gpt-6-astra |
| OpenAI Codex repository | https://github.com/openai/codex |
The demo is a yoga clothing store, produced in a single pass. The video's own chapters map the flow: prompt the site at 00:36, a full website from that one prompt at 02:30, generate the hero video at 03:40, add it to the site at 05:29, then a Genjutsu video translation at 05:47 where the same sequence gets new backgrounds and models at 06:49, and finally the assets flow back into Codex at 08:20.
Three distinct build layers sit behind that timeline:
The point of the combination is that a single agent session owns the whole output. It writes the code, decides which images and video it needs, submits those jobs, waits for URLs, and composites them before it finishes the build. No designer, no photographer, no separate handoff.
The terminal route that the video uses is the Higgsfield CLI, which the official README keeps current. Install is cross-platform:
curl -fsSL https://raw.githubusercontent.com/higgsfield-ai/cli/main/install.sh | sh
# or brew install higgsfield-ai/tap/higgsfield
# or npm install -g @higgsfield/cli
Authenticate once, then generate:
higgsfield auth login
# product-style image, block until the result URL comes back
higgsfield generate create nano_banana_2 \
--prompt "yoga apparel on a neutral studio background, soft daylight" \
--aspect_ratio 3:4 \
--resolution 2k \
--wait
Two flags matter for agent loops. --wait blocks until the job finishes and prints the result URL, so a Codex or Claude Code process can grab it and drop it straight into an <img src> or background: url(...) it is about to write. --json returns machine-readable output for piping into the build. Job management is explicit: higgsfield generate get <job_id> and higgsfield generate wait <job_id>, and the live catalog is discoverable with higgsfield model list.
For product photography specifically, the CLI ships a dedicated surface: higgsfield product-photoshoot, which the README describes as brand image generation with mode-specific enhancement. That is the command-shaped answer to "I need consistent product shots, not a generic stock look" that keeps coming up whenever AI-built sites get called out for looking generic.
There is also an MCP route that needs no API keys at all: point any MCP-compatible agent at https://mcp.higgsfield.ai/mcp, authenticate with your Higgsfield account, and the agent generates directly. The CLI and MCP share the same credited balance and generation history, so iterative workflows can reuse past outputs as inputs.
From the archive
Sep 22, 2026 • 7 min read
Sep 21, 2026 • 8 min read
Sep 21, 2026 • 10 min read
Sep 20, 2026 • 8 min read
The segment that makes the video worth watching is Genjutsu, Higgsfield's video-to-video model. The product page describes it bluntly: "Reality Manipulation - transfer motion into new scenes, or swap details while everything else stays as filmed."
Applied to e-commerce, that means the expensive part of a store - motion content - is generated once and re-filmed for free. The video demonstrates exactly the two headline cases:
For a store that sells to several regions, that kills the "re-shoot the video per market" budget line. One reference video, one motion pass, and Genjutsu produces the variants. The generator entry point is https://higgsfield.ai/ai/video?model=genjutsu, with presets documented at https://higgsfield.ai/higgsfield-genjutsu-presets.
The last chapter of the video ("Bringing Assets Back Into Codex") is the part most walkthroughs skip: the generated media has to land back inside the agent session that owns the site. The pattern, straight from the CLI docs, is that the agent runs higgsfield generate create ... --wait, captures the returned URL, and references it in the code it is writing. Because generation is asynchronous under the hood, the agent submits a batch of image and video jobs, polls with --wait or higgsfield generate wait <job_id>, and then assembles the site from the finished URLs.
That is the same agent-side asset loop we covered in the Claude Code design post, and it composes cleanly with Open Design: a DESIGN.md extracted from an existing site gives the prompt, and the asset pipeline produces media that matches it.
Use the GPT-6 Astra plus asset-pipeline route when:
--wait and --json flags fit existing build automation with zero UI switching.Skip it when:
The honest tradeoff: the pipeline replaces the "we cannot afford bespoke assets" problem, and it does not replace the "we have a brand and a process" problem.
GPT-6 Builds Websites That Actually Look This Good... runs the full build live in about nine and a half minutes - the store appearing from the prompt, the hero video generating, and the Genjutsu re-versions (new backgrounds, new models) that a written post can only describe. The pacing and the side-by-side asset comparisons are the reason to watch.
In the video it builds a full yoga clothing store from a single prompt - pages, generated product photography, and a video hero - through GPT-6 Astra with Codex, per the official video description. GPT-6 Astra became available in the Codex model picker and Amazon Bedrock catalogs with Codex CLI 0.154.0 in September 2026.
A video-to-video model that preserves the motion of a reference clip while you change the setting or swap the person or product. Higgsfield describes it as reality manipulation: "transfer motion into new scenes, or swap details while everything else stays as filmed."
No. The MCP server at https://mcp.higgsfield.ai/mcp authenticates through your Higgsfield account with no API keys to manage. API keys exist only for direct server-side REST access.
Install the Higgsfield CLI, run higgsfield auth login, then higgsfield generate create nano_banana_2 --prompt "..." --aspect_ratio 3:4 --resolution 2k --wait inside the agent session. The --wait flag returns the asset URL so the agent can reference it in the site it is building. Product-specific workflows use higgsfield product-photoshoot.
The mechanics are real and documented, but treat the demo as a capability proof, not a governance solution. Generated assets still need brand review, and a real store needs stable pricing, inventory, and payment flows on top of the front end.
product-photoshoot, model catalog, --wait and --json flags.openai/gpt-6-astra - fetched 2026-09-23, confirms the GPT-6 Astra model reference in Higgsfield's catalog.The video is a sponsored feature of Higgsfield; the blog post presents the tool as demonstrated and links only primary sources.
Read next
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.
8 min readShopify's July 30 Hydrogen developer preview update ships Vue bindings, bundled GraphQL TypeScript tooling, Shopify Inbox AI chat, and agent skills for four more frameworks. What the rebuilt toolkit means for storefront developers and coding agents.
7 min readA companion guide to the GPT-5.5 video: OpenAI's newly released model rolling out to ChatGPT and Codex, reviewed through benchmarks, agent capabilities, context window, and pricing. Here is what the video covers and where to go deeper.
6 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 ToolTypeScript-first AI agent framework. Agents, tools, memory, workflows, RAG, evals, tracing, MCP, and production deployme...
View ToolReactive backend - database, server functions, real-time sync, cron jobs, file storage. All TypeScript. This site's ba...
View ToolInteractive TUI dashboard that shows exactly where your Claude Code and Cursor tokens are going, in real time.
View ToolDrop a long video, get the clips worth posting. No timeline scrubbing.
View AppRun simple A/B tests with a tiny SDK, realtime analytics, and honest statistics.
View AppGenerate avatar video scripts, hooks, and scene notes from one creator brief.
View AppReal-time prompt loop with history, completions, and multiline input.
Claude CodeConfigure Claude Code for maximum productivity -- CLAUDE.md, sub-agents, MCP servers, and autonomous workflows.
AI AgentsDeep comparison of the top AI agent frameworks - LangGraph, CrewAI, Mastra, CopilotKit, AutoGen, and Claude Code.
AI Agents
Try Higgsfield Genjutsu: https://higgsfield.ai/s/higgsfield-genjutsu-yt-developersdigest-mEtRCN What happens when you combine GPT-6 Astra with AI images and video? In this video, I build a yoga cloth...

Try the free Higgsfield Blender Plugin: https://higgsfield.ai/s/higgsfield-x-blender-yt-developersdigest-Iprxvy What happens when GPT-6 Astra goes beyond code? In this video, I use Codex to control B...

GPT-6 (GPT Astra) Released: Benchmarks, Pricing, Computer Use Demos & What’s New OpenAI has released GPT-6, also called GPT Astra, and the video gives an overview of its capabilities, benchmarks, pri...

Claude Code and Codex can build a website in minutes, but the result often looks generic and obviously AI-generated. Hig...

Codex CLI 0.154.0 adds experimental worktrees, inline answers, Windows daemon support, and approval hardening. The impor...

The Rime CLI streams natural-sounding text-to-speech straight from your terminal, so Claude Code, Codex, Devin, and Open...

Codex Computer History gives agents a rolling view of work across apps. Here is how it works, where it helps, and the pr...

A decision-intent comparison of pi, Claude Code, OpenCode and Codex CLI as your main agentic coding harness in late 2026...

OpenAI published real usage data from its enterprise customer base: Codex now drives 64% of enterprise output tokens, an...

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