V1 Web PWA · Surface walkthrough

Studio · Yemaya · Assets

A per-surface walkthrough of the V1 Web PWA studio surface: layout, states, interactions, data, and cross-references.

walked
8sections2 minread

On this page

Context. surface studio · domain yemaya · route /studio/yemaya/assets · auth signed-in + studio entitlement · source apps/oshun/web/src/app/studio/yemaya/assets/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#

Aggregator workspace that composes three sibling Yemaya asset lanes — Asset Library, Asset Marketplace, and Asset Pipeline — under one shell, with a Capability Summary heading the page. The page performs no /v1 fetch; each embedded lane runs its own admin-scoped console.

Entry points#

  • Studio index quick-actions.
  • Breadcrumb chain on this page: Studio › Yemaya Asset Library › Assets.
  • Direct URL / bookmark (signed-in + studio entitlement).

Layout regions#

page.tsx renders ShellLayout active="studio" and:

  • Breadcrumbs panel (data-yemaya-assets-breadcrumbs): Studio › Yemaya Asset Library › Assets (current aria-current="page").
  • Workspace panel (StudioYemayaAssetsWorkspace, data-yemaya-assets-workspace):
    • <h1> "Yemaya Assets Workspace".
    • Summary <p data-yemaya-assets-summary>.
    • Capability Summary (data-yemaya-assets-capability-summary, <h2>): four data-yemaya-assets-capability cards — Asset Inventory Orchestration, Library and Pipeline Integration, Distribution and Market Readiness, Security and Parity.
    • Asset Library Lane (data-yemaya-assets-library-lane, <h2>) — embeds StudioYemayaAssetLibraryWorkspace.
    • Asset Marketplace Lane (data-yemaya-assets-marketplace-lane, <h2>) — embeds StudioYemayaAssetMarketplaceWorkspace.
    • Asset Pipeline Lane (data-yemaya-assets-pipeline-lane, <h2>) — embeds StudioYemayaAssetPipelineWorkspace.
  • Route Map panel (data-yemaya-assets-route-map): <h2> "Route Map" with six entries.
  • Quick-action panel: four quickAction links.

States#

The aggregator renders unconditionally; each embedded lane owns its own states:

Interactions#

Capability cards (non-interactive)#

  • Asset Inventory Orchestration / Library and Pipeline Integration / Distribution and Market Readiness / Security and Parity (data-yemaya-assets-capability articles).

Embedded lanes#

  • Asset Library Lane / Asset Marketplace Lane / Asset Pipeline Lane — see their per-view walkthroughs.

Route map#

data-yemaya-assets-route-map — six entries:

  • /studio/yemaya/assets
  • /studio/yemaya/assets/catalog/[assetId]
  • /studio/yemaya/assets/library/[collectionId]
  • /studio/yemaya/assets/marketplace/[listingId]
  • /studio/yemaya/assets/parity/[parityId]
  • /studio/yemaya/assets/governance/[policyId]

Quick actions#

  • "Open Yemaya Asset Library workspace"/studio/yemaya/asset-library.
  • "Open Yemaya Asset Marketplace workspace"/studio/yemaya/asset-marketplace.
  • "Open Yemaya Asset Pipeline workspace"/studio/yemaya/asset-pipeline.
  • "Back to Studio workspace index"/studio.

Data & contracts#

  • Reads: none at the page boundary; reads happen inside each embedded lane.
  • Writes: none at the page boundary; the embedded lanes own their POSTs.
  • Realtime: None.
  • Caching: aggregator delegates to embedded lanes (each fetch on mount, no-store).
  • Auth/role check: admin-scoped, fail-closed inside each lane; route additionally signed-in + studio via the proxy gate.

Cross-references#

  • Workspace source: apps/oshun/web/src/components/studio/StudioYemayaAssetsWorkspace.tsx
  • Route map source: apps/oshun/web/src/components/studio/StudioYemayaAssetsRouteMap.ts
  • Page source: apps/oshun/web/src/app/studio/yemaya/assets/page.tsx
  • Embedded lanes:
    • apps/oshun/web/src/components/studio/StudioYemayaAssetLibraryWorkspace.tsx
    • apps/oshun/web/src/components/studio/StudioYemayaAssetMarketplaceWorkspace.tsx
    • apps/oshun/web/src/components/studio/StudioYemayaAssetPipelineWorkspace.tsx
  • Sibling: studio-yemaya-asset-organization.md
  • Studio overview: studio-overview.md
  • Feature spec: V1/features.md

Open questions / known gaps#

  • Route-map children (catalog/library/marketplace/parity/governance) are a sitemap contract; confirm which dynamic pages exist.