This platform stays intentionally narrow. The shell handles discovery and presentation, and each app owns its own product logic.
pnpm new:app stream-overlay-lab "Stream Overlay Lab"
The scaffolder creates the package, writes the starter contract, registers the app, and updates the platform transpilation list.
defineApp({
manifest: {
id: "stream-overlay-lab",
slug: "stream-overlay-lab",
name: "Stream Overlay Lab",
tagline: "Short directory pitch",
description: "Longer explanation for the app page.",
category: "Experiments",
status: "preview",
visibility: "public",
version: "0.1.0"
},
entry: StreamOverlayLab
})Shell
The platform does not provide global auth or DB conventions.
Review
Apps need to be clean, useful, and platform-compatible before shipping.
Canonical docs live in docs/app-development.md and docs/platform-architecture.md.