App flow — type: "app" (Higgsfield-integrated, Quanta)
You are building ONE per-website Cloudflare Worker: a React 19 + TanStack
Start app that is server-rendered (SSR) and deploys as a single Worker
served at the app's own subdomain. A type: "app" product is tightly
integrated with Higgsfield: its users Sign in with Higgsfield and generate
images/videos through the fnf SDK, and the app must look and feel like a
Higgsfield product — apps render INSIDE Higgsfield, indistinguishable from its
own tools. There is no independent brand and no wow/marketing pipeline here:
the craft bar is Quanta's UX-craft rules.
Repo layout. The project lives in app/ — its own package.json,
src/, packages/, migrations/, build config, and the deploy inputs
(app.manifest.json, wrangler.jsonc). Run every bun/build command from
there.
What you have to build with
- Quanta (
@higgsfield/quanta) — Higgsfield's design system, vendored in the template. MANDATORY: use its components before writing custom chrome.references/quanta-design.mdis the working guide (tokens, components, UX-craft rules, the Higgsfield integration rules); the canonical API reference isapp/packages/quanta/ai/AGENTS.md— RELY ON IT for props/APIs; do NOT open or grep the component.tsxsource to re-derive prop names. - The six code layouts (
references/app-layouts.md+app/src/layouts/AGENTS.md) — Studio (studio.tsx), Preset (preset.tsx), App detail (app-detail.tsx), AI Stylist (ai-stylist.tsx), Skin Enhancer (skin-enhancer.tsx), and Shots (shots.tsx), shipped as REAL CODE in the template (not screenshots). Start from the closest one, copy it into your route, and adapt it — build from the code plus the reusable pieces inapp/src/components, never from a screenshot. - Custom components for gaps — for anything Quanta lacks (date picker,
calendar, data table, …), build a small component from Quanta primitives +
q-tokens in the app's ownapp/src/components/. Never add a third-party UI library, never edit the vendored@higgsfield/quantapackage, never restyle a Quanta component (seereferences/quanta-design.mdrule 5). - Icons — Google Material Symbols outlined 400, imported per icon
(
@material-symbols/svg-400/outlined/<name>.svg?react). The generate-button sparkle is the branded@/assets/icon-sparkles-soft.svg?react. - fnf SDK (
references/fnf-sdk.md) + React bindings (references/fnf-react.md) — generation jobs, media, profile, workspace, credits.@higgsfield/fnfships the SDK core plus ONE bundled adapter:createWorkflowPlatformAdapterat@higgsfield/fnf/workflow-platform(the old@higgsfield/fnf/adapterssubpath no longer exists; other adapters live in@higgsfield/fnf-adapters, which generated apps do not use). Package guides are canonical for APIs:app/packages/fnf/ai/AGENTS.mdandapp/packages/fnf-react/ai/AGENTS.md— rely on them; do NOT grep the SDK source to re-derive method names/params. - Higgsfield auth (
references/auth.md) — the/api/userproxy,/__auth/login//__auth/logout, server-side re-checks. Mandatory for every app (see rule 3). - Infra — D1 / R2 / KV / Durable Objects / containers via
app/app.manifest.json(rules 4-6; heavy/long-running work:references/containers.md). Runtime + routing:references/runtime-and-infra.md. Security:references/security.md. - Launch cover (
references/app-cover.md) — the branded 3:2 cover + OG image. REQUIRED before every publish (og_image_url+marketplace_cover_urlare mandatory feed-card fields).
Higgsfield as the asset engine. Any imagery the app itself needs (empty state artwork, onboarding illustration, favicon, cover) is generated with the Higgsfield CLI generation commands — never stock, never placeholders.
Non-negotiable app design rules
These come from references/quanta-design.md — read it before building:
- Never customize Quanta styles, never modify Quanta — compose, don't
restyle. Build anything Quanta lacks as your own small component from Quanta
primitives +
q-tokens inapp/src/components/; never add a third-party UI library. - No app header/top bar — apps render inside Higgsfield; the host chrome
provides the global header and account controls. Never credits/balance or
sign-out UI. In-app navigation is a Quanta
Sidebaror inline controls. - Always dark —
data-theme="default-dark"is pinned; no theme toggle, no light mode, nodark:styling. - Container width —
mx-auto w-full max-w-7xlon every shell except the cinema-studio full-bleed workspace. - Buttons — variant colors do NOT follow the names:
primary= flat lime,secondary= solid white,tertiary= dark white/10 glass. The generation CTA is alwaysmarketingPrimarywith the credit cost inside the button ({label} {sparkles icon} {credits}, credits in the label's font); ordinary/nav actions use the darktertiary/ghost.
How to build an app
Plan first, then narrate progress. Right after intake, post a short plan to the user — the screens/features you're about to build, in product terms (per the SKILL.md "Talking to the user" rule). As you work, send a one-line update whenever a step completes ("Screens are built — wiring up generation next", "4 of 6 done") so the user always knows how much work remains. Never go silent for a long stretch of the build.
Read the guides, then BUILD — do not spelunk the package source. Your whole
API surface is already written down: references/app-quickstart.md (the
copy-paste critical path — auth, generation submit/poll, result rendering, and
the common Quanta components — READ IT FIRST), references/quanta-design.md
plus the in-repo app/packages/quanta/ai/AGENTS.md for component props/tokens,
and references/fnf-sdk.md + references/fnf-react.md (canonical in-repo
mirrors: app/packages/fnf/ai/AGENTS.md and .../fnf-react/ai/AGENTS.md) for
the SDK + hooks. Those guides plus the chosen code layout are ENOUGH to
build the whole app. Do NOT open, cat, or grep
app/packages/{quanta,fnf,fnf-react}/src/** — every prop and method you need
is in the guides, and reading package source is the single biggest time sink in
a build (it also bloats context and slows every later step). If a specific prop
or field is genuinely missing from a guide, make the reasonable call. Once you
have read the guides + the chosen code layout, you have enough — start writing.
- Intake (ONE batched round — ask the user only for what the brief doesn't
answer): confirm
type: "app"is what the user wants (it is the USER'S choice), what the app does (which generation models/flows), anything brand-critical, and whether to publish to the community feed (marketplace) when ready (remember it for step 8). Never a second round — pick sensible defaults and state them. - Create —
higgsfield website create --type app. - Plan the screens — pick the closest of the six code layouts in
app/src/layouts(studio / preset / app-detail / ai-stylist / skin-enhancer / shots; seereferences/app-layouts.md) and read its code +app/src/layouts/AGENTS.mdfor the composition; list the screens/states (including first-run/empty state) and the app's own product state for D1. - Build with Quanta — adapt the chosen code layout using
Quanta components per
references/quanta-design.md. NEVER customize or modify Quanta; when a component doesn't exist or doesn't fit as-is, build a small custom component from Quanta primitives inapp/src/components/(quanta-design.mdrule 5). Real copy in every state (empty, busy, error) — no placeholders. - Wire fnf end-to-end — auth first (
references/auth.md), then generation/media through server functions perreferences/fnf-sdk.md+references/fnf-react.md, product state in D1 (rules 3/3a below). Poll jobs, render real results. - Deploy (
higgsfield website deploy <website_id>— this ships the live public site immediately). Report the live URL (fromhiggsfield website status) in product terms, no repo/commit/deploy jargon (see the SKILL.md "Talking to the user" rule). - Cover + metadata — ALWAYS, as part of building (not just at publish).
Every app ships with a launch cover and filled feed-card metadata. Generate
them per
references/app-cover.md: the branded 3:2 cover + stadium-capsule OG image, then fillapp/src/app-meta.json—og_title,og_description,og_image_url(the OG file),marketplace_cover_url(the plain cover),favicon_url. This is NOT optional and NOT gated on the user asking: do it without prompting, the same way you write real copy. (Only the cover VIDEO,og_video_url, needs the user's permission — it costs credits.) An app you present as done with an empty cover or emptyog_titleis INCOMPLETE. Always suggest the cover video: when you present the finished app (and again at publish), proactively offer a short animated cover for the feed card ("want a short cover video? it makes the feed card play on hover") — suggest it every time, then only generate it if the user says yes (references/cover-animator.md). - Publish. If the user opted in at intake (step 1), publish automatically
once the app is deployed with its cover + metadata filled — run
higgsfield website publish <website_id>without waiting to be asked, and share the community-feed listing URL it reports. Otherwise publish only when asked. After a successful publish, suggest entering the $100k app contest ("want to enter it in the Higgsfield app contest? you'd add a couple of social links") —higgsfield website contest, seereferences/contest.md.
Functional routing
| Task | Read |
|---|---|
| START HERE — the working critical path: auth, generation submit/poll, result rendering, the common Quanta components | references/app-quickstart.md |
| fnf SDK: generation jobs, media upload, profile/workspace/credits, adapters | references/fnf-sdk.md + references/auth.md + references/runtime-and-infra.md |
| React query/cache/controllers for fnf | references/fnf-react.md + references/auth.md |
| Higgsfield-SDK app UI (generation console, fnf-backed tool) | references/app-layouts.md + references/quanta-design.md + references/fnf-sdk.md + references/fnf-react.md + references/auth.md (component gaps: build from Quanta primitives) |
| Cover / OG image ("cover", "обложка", "OG image", publish prep) | references/app-cover.md — branded 3:2 cover + capsule OG mask |
Cover video / "animate the cover" (og_video_url, permission-gated) |
references/cover-animator.md — ~5s end-frame reveal via seedance_2_0 |
App contest ("enter the contest", "$100k contest", higgsfield website contest) |
references/contest.md — entry auto-publishes; submit with social links |
Auth, current user, login/logout, /api/user, __auth routes |
references/auth.md + references/runtime-and-infra.md |
Protected/authenticated /api/... file downloads inside the Higgsfield iframe |
references/auth.md — credentialed fetch → Blob download; signed URLs for large files |
| TanStack Start routes, SSR, server functions, Cloudflare Worker runtime | references/runtime-and-infra.md |
| Heavy / long-running work (ffmpeg, headless browser, background jobs), containers | references/containers.md |
Do NOT search the skill library for other design guidance — everything is here.
Hard rules
0a. Higgsfield packages and template modules
The app/packages/ directory contains managed snapshots vendored from the
upstream Higgsfield web app: @higgsfield/fnf, @higgsfield/fnf-react, and
@higgsfield/quanta. Do not edit these manually unless the task explicitly
asks to patch a package snapshot. Template-owned infrastructure lives in
app/src/module/**.
0b. Supercomputer Design mode inspector
Generated apps support a Higgsfield design inspector bridge for editing in Supercomputer Design mode. The split is strict:
- The Higgsfield editor (parent window) owns the iframe UI, hover overlay, edit popover, origin/session checks, and edit prompt submission.
- This template owns the child iframe runtime through
app/src/module/design-inspector. - Agents never manually implement inspector code, refs, source markers, or
data-hf-*attributes.
Local scripts: bun run build (inspector-free by default; set
HF_DESIGN_INSPECTOR=1 in the env for the inspector-enabled build) and
bun run dev:design — for LOCAL work only. The platform CI sets
HF_DESIGN_INSPECTOR=1 on every deploy build, so the live deployed site always
carries the inspector and IS the surface Supercomputer Design mode opens. There
is ONE deploy (higgsfield website deploy <website_id>) and it ships the live
public site immediately; never hard-code HF_DESIGN_INSPECTOR=1 into the
build script or hand-edit the build scripts to toggle the inspector.
1. SSR-safe rendering
Every route renders on the server per request. NEVER touch browser-only
globals (window, document, localStorage, navigator) at module top
level or during render — only inside useEffect/event handlers, or guarded
with typeof window !== "undefined". A top-level window reference crashes
SSR.
2. Server-only code stays server-only
Put server logic in createServerFn(...).handler(...) or a *.server.ts
module (the .server.ts suffix keeps it out of the client bundle). Secrets
and bindings are read server-side, per request — never shipped to the
browser.
3. Higgsfield (fnf) calls are BACKEND-ONLY — and auth is MANDATORY
Call Higgsfield internal services exclusively from server code at
https://fnf.internal/* (the platform attaches the user's identity on server
egress, so tokens never live in app code). NEVER call https://fnf.internal/*
from client components.
Every app is an authenticated surface. Before shipping you MUST implement the
Higgsfield auth contract exactly as written in references/auth.md: the
GET /api/user server proxy (returns the upstream status and JSON unchanged),
a signed-out state that links to /__auth/login?return=<path>,
/__auth/logout?return=<path>, and a server-side auth re-check before every
SDK operation. Do not invent your own login UI, email/password form, or token
handling, and do not build anonymous generation flows unless the user
EXPLICITLY asks for an offline/mock demo.
Sign-in on the deployed site is platform-owned — do NOT improvise a cause if
it fails. /__auth/login is a platform-injected route that hands off to
Higgsfield's auth service, then redirects back to return so /api/user
succeeds. If a user reports sign-in failing on a DEPLOYED SITE, FIRST confirm
the app side is correct (links to /__auth/login?return=<path>, proxies
/api/user unchanged); if it is, the failure is on the platform/auth side —
say so plainly instead of inventing an app-code cause.
If the app also needs its own user accounts (e.g. team members of the app's customers), keep that separate — never replace Higgsfield auth with app-local auth for generation.
Treat auth, profile, credits/workspace display, and a generation feed/history as mandatory acceptance criteria for any generation app — do not wait for the user to ask.
Generation history cards must render SDK Generation.results, not status-only
placeholders. Compose result cards from Quanta Media/Card using the
helpers in app/src/lib/higgsfield-generation-results.ts (they map a
Generation to its preview URL with the right precedence). A completed job
without a result URL must show an explicit "preview unavailable" state with
refresh behavior.
When creating SDK clients, use only
createWorkflowPlatformAdapter({ baseUrl: 'https://fnf.internal' }) — imported
from @higgsfield/fnf/workflow-platform (NOT @higgsfield/fnf/adapters; that
subpath no longer exists) — from server-side code. Do not use public/dev fnf
URLs, env-selected backend URLs, createFnfWebAdapter,
createDevFnfWebAdapter, apps-marketplace adapters, bearer tokens, or dev
user headers in generated app code.
Generation submits require the SDK's confirmation gate: a browser confirmation
modal (model + settings + cost preview) before the generate call, and the
adapter's confirm option wired server-side. A declined confirmation is the
typed confirmation_rejected error — render it as a cancelled state. See
references/fnf-sdk.md, "Submission Confirmation Gate".
3a. An app is end-to-end — real backend + real DB, never a mock
An app MUST ship as a real, end-to-end product — NOT a front-end mock, prototype, or "demo" that fakes the backend. All three are required:
- A real backend. Every data operation runs through a TanStack server function or server route — fnf calls server-side, reads/writes server-side.
- Real persistence (D1). Opt into D1 (
"db": trueinapp/app.manifest.json) and persist the app's OWN product state: saved/favorited generations, collections, presets, share records, settings. Schema inapp/migrations/000N_*.sql(additive; rule 5). - Real fnf integration. Generations, media, profile, and credits come from
the live SDK against
https://fnf.internal, never hardcoded fixtures.
fnf is the source of truth for the generations themselves — do NOT mirror fnf's tables into D1. D1 is for YOUR product layer on top.
These are NOT a backend and are bugs: in-memory arrays or module-level
state as "the database"; localStorage as the persistence layer;
hardcoded/fixture/lorem data; a static JSON file faking a list endpoint;
setTimeout faking latency; memory/mock SDK adapters shipped as the product.
The ONLY exception is when the user explicitly asks for an offline/mock
demo — then say plainly that it is a mock and why.
4. Cloudflare bindings via cloudflare:workers
Any infra you opt into (D1 DB, R2 STORAGE, KV KV) is read server-side
through app/src/lib/bindings.server.ts
(import { env } from "cloudflare:workers"). Each binding is present ONLY if
declared in app/app.manifest.json, so the typed accessors are optional —
guard before use. Do not thread env through React props or read it at
module top level.
5. Opted-in storage is LIVE — one deploy, one database
If you opt into D1, R2, or KV, each is a SINGLE instance backing the ONE live
deploy. There is no staging copy: every migration and data change hits live
production data directly. env.HF_ENV is always "production" on deployed
builds; there is no separate database/bucket to test against. A destructive
migration you run "just to test" destroys production data. Prefer additive
migrations (CREATE TABLE IF NOT EXISTS, ADD COLUMN), and get explicit user
approval before any destructive change.
6. app/app.manifest.json declares infra — NOTHING is provisioned by default
A new app gets no D1, no R2, no KV, no Durable Object. Opt in only when
the app actually needs it: "db": true → D1 (env.DB); "r2": true → R2
(env.STORAGE); "kv": true → KV (env.KV); "durableObject": "ClassName"
→ a Durable Object (env.ROOMS, ALSO export class ClassName extends
DurableObject {…} from app/src/server.ts); "container": true → a Docker
container for heavy/long-running work (env.CONTAINER —
references/containers.md). Counts are capped (≤1 each); the platform
provisions and binds at deploy; the committed app/wrangler.jsonc is
build/dev input only. KV is eventually consistent (NOT Redis) — use a
Durable Object for strong consistency.
Editing map
- Pages / routing →
app/src/routes/**(file-based;__root.tsxis the shell). - Server logic →
createServerFn(seeapp/src/lib/api/example.functions.ts) or*.server.ts. - Bindings access →
app/src/lib/bindings.server.ts. - Infra declaration →
app/app.manifest.json;app/wrangler.jsonc= build/dev input. - Components → Quanta components first (
@higgsfield/quanta/*— Button, Input, Textarea, Dropdown, Modal, Tabs, Sidebar, Chip, …), app-local composition inapp/src/components/**; layout perreferences/app-layouts.md; gaps → your own component from Quanta primitives. - Generation result UI → compose from Quanta
Media/Card+app/src/lib/higgsfield-generation-results.ts. - Styles / theme →
app/src/styles.css(Tailwind v4 + Quanta wiring). Quanta'sq-tokens ARE the theme; the app is permanently dark. - D1 schema →
app/migrations/000N_*.sql(additive; see rule 5).
Deploy
The trusted platform CI builds the app on every deploy (always with
HF_DESIGN_INSPECTOR=1 and HF_ENV="production" — the live site carries the
design inspector), so a deploy already gives you the authoritative build
result. The sandbox cannot deploy/migrate; the trusted platform CI does that.
Default: deploy — higgsfield website deploy <website_id> builds via CI and
ships the live site immediately. You don't have to lint, build, or typecheck
locally unless you think it's necessary (e.g. to debug); just make sure you
pushed your changes to the remote repository before deploying. Never publish/list
on the community feed unless the user explicitly asked to publish.
Publishing ("show in feed"). When the user asks to publish / share / put
the app on the feed, run higgsfield website publish <website_id> — it lists
the app on the Higgsfield community feed. Publishing no longer deploys: it
lists whatever is already live, so run higgsfield website deploy <website_id>
FIRST — and after ANY later change, deploy again to ship it (re-publishing does
not re-deploy and won't pick up un-deployed changes). Never list the app on the
community feed unless the user explicitly asked to publish.
HARD GATE — the cover is NOT optional. Running higgsfield website publish while
og_image_url or marketplace_cover_url is empty is a BROKEN publish (the
feed card renders ONLY from app/src/app-meta.json; an empty og_title makes
the listing INVISIBLE, an empty cover makes it a blank card). The publish
sequence is: (a) READ app/src/app-meta.json; (b) if og_image_url or
marketplace_cover_url is empty → STOP, read references/app-cover.md and
generate + upload the cover NOW — do not skip this because the user "only asked
to publish", the cover IS part of publishing; (c) fill ALL fields below with
real values (never placeholders); (d) commit + push; (e) run
higgsfield website deploy <website_id> to ship the pushed changes (publish no
longer deploys — it lists what's already live); (f) only then run
higgsfield website publish:
og_title— the card's title (also the browser tab title).og_description— the card's one-liner.og_image_url— REQUIRED: the cover image, generated perreferences/app-cover.md(the branded 3:2 cover + stadium-capsule OG mask) if none exists yet; upload the OG file withhiggsfield upload createand set the returned durable URL.marketplace_cover_url— REQUIRED: the plain (unmasked) cover, the same generation's<name>_cover.pngfromreferences/app-cover.md, uploaded withhiggsfield upload create. One generation fills both this andog_image_url— there is never a reason to have one without the other.favicon_url— the card's logo/icon (generate one if none exists yet).og_video_url— the cover video, OPTIONAL and permission-gated: ALWAYS SUGGEST it (offer it every time — "want a short cover video for the feed card? it plays on hover"), but ASK PERMISSION FIRST — generating a video costs credits; never generate it unprompted. If they say yes, followreferences/cover-animator.md(the ~5s end-frame reveal of the launch cover viaseedance_2_0).
(1–5 are generated without asking — they are part of the publish, not a separate credit decision; only the cover VIDEO (6) needs permission.)
higgsfield website deploy <website_id> remains the way to ship the live site
WITHOUT a feed listing.
Entering the app contest. If the user asks to enter the app in the
Higgsfield contest ("enter the contest", "submit to the $100k contest"), run
higgsfield website contest <website_id> --url <link> — an unpublished app is
published automatically by the entry (it just needs a live prod deploy, and
fill the page metadata FIRST — the auto-published listing renders from it), so
there's no separate publish step. The submission needs one or more public
social-media links (Instagram / TikTok / YouTube / X) with the app link and
#HiggsfieldApp — the user posts those themselves, so ask for the URL(s). Full
rules, prizes, and how the contest shapes the build are in
references/contest.md.
Run the local checks only when you actually need them — from app/:
cd app
bun install # only when you changed dependencies / package.json
bun run typecheck # tsc --noEmit — only to chase a type error on deploy
bun run build # local build — only to chase a build error on deploy
Adding a dependency: bun add.
Small edits to an existing app (copy tweak, one component, styling fix): make the edit, deploy.