diff --git a/.changeset/studio-app-builder-nav.md b/.changeset/studio-app-builder-nav.md new file mode 100644 index 0000000000..2f63e6a78f --- /dev/null +++ b/.changeset/studio-app-builder-nav.md @@ -0,0 +1,11 @@ +--- +"@objectstack/platform-objects": patch +--- + +feat(studio): "App Builder" navigation entry — the pillar builder joins the journey + +The Studio app's Overview group gains an **App Builder** entry (componentRef +`studio:builder`, bound by the console to the builder landing page). This makes the +pillar application builder reachable from the moment a user logs in — Home → Studio +→ App Builder → pick/create a writable base package → the full-screen builder at +`/studio/:packageId/:tab` — instead of being a URL-only surface. diff --git a/packages/platform-objects/src/apps/studio.app.ts b/packages/platform-objects/src/apps/studio.app.ts index 94b8d3cba1..c818a22c8e 100644 --- a/packages/platform-objects/src/apps/studio.app.ts +++ b/packages/platform-objects/src/apps/studio.app.ts @@ -84,6 +84,19 @@ export const STUDIO_APP: App = { label: 'Overview', icon: 'layout-dashboard', children: [ + { + // The application builder's front door (ADR-0080/0084): pick or + // create a writable base package, then design in the full-screen + // pillar builder (/studio/:packageId/:tab). The console binds + // `studio:builder` to the BuilderLanding page — this makes the + // builder reachable from login (Home → Studio → App Builder) + // instead of being a URL-only surface. + id: 'nav_app_builder', + type: 'component', + label: 'App Builder', + componentRef: 'studio:builder', + icon: 'hammer', + }, { id: 'nav_metadata_directory', type: 'component',