Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .changeset/setup-packages-nav.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
"@objectstack/platform-objects": patch
---

feat(setup): Packages entry in Setup's Apps group

Package administration (install / inspect / manage) is an operator concern
(ADR-0084: packages are Operate, out of the builder), so it gains a home in the
Setup app: `group_apps` now carries a **Packages** entry bound to the console's
existing `developer:packages` page. Building apps remains a separate journey
(the Home builder cover → `/studio`); this entry is for administration.
16 changes: 13 additions & 3 deletions packages/platform-objects/src/apps/setup-nav.contributions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,19 @@ export const SETUP_NAV_CONTRIBUTIONS: NavigationContribution[] = [
{ id: 'nav_system_overview', type: 'dashboard', label: 'System Overview', dashboardName: 'system_overview', icon: 'activity' },
],
},
// No group_apps contribution left here — both marketplace entries moved
// out (see header note); the group_apps shell anchor in setup.app.ts is
// filled entirely by capability plugins now.
{
// Package ADMINISTRATION is a platform/operator concern (ADR-0084:
// packages are Operate, out of the builder) — so its home is Setup, not
// the application builder. The console binds `developer:packages` to the
// existing package-management page. Building/creating apps is a separate
// journey (Home cover → /studio); this entry is for install/inspect/admin.
app: 'setup',
group: 'group_apps',
priority: BASE_PRIORITY,
items: [
{ id: 'nav_packages', type: 'component', label: 'Packages', componentRef: 'developer:packages', icon: 'package' },
],
},
{
app: 'setup',
group: 'group_people_org',
Expand Down