# Build App Entry

> Wire built features into a running application — import peer schemas, lazy-load peers, and mount the root UI.

- Skill: `adobe/build-app-entry` (Agent Skill)
- Install (CLI): `npx skillmds@latest add adobe/build-app-entry`
- Raw SKILL.md: https://api.skillmd.com/api/skills/adobe/build-app-entry/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: Adobe (https://skillmd.com/u/adobe)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/adobe/build-app-entry

---


- The base (`features/main`) core-database `imports` each peer feature's core-database
  plugin, so all schemas coexist, persist, and sync while the base type stays decoupled.
- The base reaches a peer only through a lazy element wrapper (dynamic import), so peers
  load on demand.
- The entry point creates the live database from `MainService.plugin` (the base
  feature's assembled database — see `features/services/main-service/index.md`) and mounts the root UI.

See `features/index.md` (one-app-many-features) for the wiring rules.

