Context. surface studio · domain isis · route /studio/isis/3d-generation · auth signed-in + studio entitlement (AAA-gated — segment 3d-generation in AAA_ONLY_STUDIO_ROUTES) · source apps/oshun/web/src/app/studio/isis/3d-generation/page.tsx
Last walked. 2026-05-29 automated runtime walk (Playwright headless) — render, /v1 data (2xx), console/page-errors, expected content, screenshot verified; live screen-reader, touch, offline, and telemetry-delivery checks pending a manual AT pass. Evidence: WALKTHROUGH/results/runtime-sweep-2026-05-29.md; body re-derived 2026-06-03 from current source (lane-console architecture)
Purpose#
Admin lane console that wires the real @isis/3d-product-parity structured-prompt
builder: the operator supplies a subject plus optional material, style, topology,
poly-budget, export, and animation fields, and the builder assembles a structured
3D generation prompt and reports exactly which fields contributed. All reads and
writes flow through /v1/admin/isis/3d-generation; it is admin-scoped and fails
closed.
Entry points#
- Breadcrumb in-page:
Studio→Isis Video Generation→3D Generation - Sibling quick-actions from
/studio/isis/3d-editing,/studio/isis/3d-generation/turntable-viewer,/studio/isis/video-generation - Direct URL / bookmark (AAA entitlement required)
Layout regions#
page.tsx mounts <ShellLayout active="studio"> and four panels: a breadcrumb
panel, the workspace, the Route Map, and sibling quick-actions.
- Header: shell header
- Breadcrumb panel (
data-isis-3d-generation-breadcrumbs):Studio(link) →Isis Video Generation(link →/studio/isis/video-generation) →3D Generation(aria-current="page") - Workspace panel (
data-isis-3d-generation-workspace):<h1>(WorkspaceHeading) "Isis 3D Generation Workspace"- Summary paragraph (
data-isis-3d-generation-summary) - Prompt-builder form (
data-isis-gen-build-form) once the catalog loads, with the build result below (data-isis-gen-result)
- Route Map panel (
data-isis-3d-generation-route-map):<h2>Route Map</h2>overSTUDIO_ISIS_3D_GENERATION_ROUTE_MAP(7 entries) - Sibling quick-actions panel:
/studio/isis/3d-editing,/studio/isis/3d-generation/turntable-viewer,/studio/isis/video-generation,/studio
States#
- Loading —
outcome === null;data-isis-gen-loading"Loading prompt builder…" - Unauthorized — 401/403 admin-scope fail-closed;
data-isis-gen-unauthorized("Isis workspace scope required to view 3D generation.") - Error — non-OK or malformed catalog;
data-isis-gen-error - Ready (form) — catalog present; topology/export selects populated from
catalog.topologyTargets/catalog.exportTargets - Result — after a build POST,
data-isis-gen-resultshowsdata-isis-gen-prompt(the assembled prompt) anddata-isis-gen-fields("fields used: …"); validation/build failures surface indata-isis-gen-build-error(e.g. "Enter a subject for the prompt.")
Interactions#
Prompt-builder form (data-isis-gen-build-form)#
- Subject (
data-isis-gen-field=subject, text input) - Material family (
data-isis-gen-field=materialFamily, text input) - Style target (
data-isis-gen-field=styleTarget, text input) - Topology target (
data-isis-gen-field-topology,<select>fromcatalog.topologyTargets; "— none —" option) - Poly budget (
data-isis-gen-field=polyBudget, text input) - Export target (
data-isis-gen-field-export,<select>fromcatalog.exportTargets; "— none —" option) - Animation need (
data-isis-gen-field-animation,<select>: "— unset —" / "yes" / "no") - Build prompt (
data-isis-gen-build-submit, submit) —POST /v1/admin/isis/3d-generation/build-prompt, then renders the result
Route Map#
- Route-map articles ×7 (primary,
/scenes/[sceneId],/exports/[exportId],/revisions/[revisionId],/parity/[parityId],/governance/[governanceId],/turntable-viewer)
Sibling quick-actions#
- Open Isis 3D Editing workspace →
/studio/isis/3d-editing - Open Isis Turntable Viewer →
/studio/isis/3d-generation/turntable-viewer - Open Isis Video Generation workspace →
/studio/isis/video-generation - Back to Studio workspace index →
/studio
Data & contracts#
- Reads:
GET /v1/admin/isis/3d-generation({ topologyTargets, exportTargets }catalog) - Writes:
POST /v1/admin/isis/3d-generation/build-prompt(returns{ result: { workflow, prompt, fieldsUsed } }) - Realtime: none
- Caching: client fetch on mount,
cache: 'no-store',buildBffAuthHeaders() - Auth/role check: admin-scoped, fail-closed (401/403); route gated on signed-in + studio entitlement (AAA segment)
- Component sources:
apps/oshun/web/src/components/studio/StudioIsis3DGenerationWorkspace.tsxapps/oshun/web/src/components/studio/StudioIsis3DGenerationRouteMap.ts
Cross-references#
- Studio overview:
../../studio-overview.md - AAA gating:
libs/isis/entitlements/src/studio-boundary.ts - Sibling routes:
Open questions / known gaps#
- Route-map sub-paths (
/scenes,/exports,/revisions,/parity,/governance) are declared but not yet implemented as separate pages - The breadcrumb names "Isis Video Generation" as the parent, but Video Generation does not appear in this route's quick-actions group beyond the direct sibling link