Editors work inside the admin UI for a hosted environment or self-hosted admin.
The content screens are generated from the schema published by @cms0/cms0.
Editors only see roots and collections after the CLI publishes the schema for that runtime.
Edit a root
Roots are singleton content entries, such as homePage or siteSettings.
Open the environment admin UI
Use the hosted environment page or your self-hosted admin origin.
Choose the root
Select a singleton root such as homePage or siteSettings.
Edit and save
Update fields, save, then refresh the app page that reads that root.
Edit a collection
Collections come from array fields in your schema.
Open the collection
Collections come from array fields in the TypeScript schema.
Create or open an entry
Fill required fields and save.
Read from the app
Use the entry ID, collection list, or collection filters from your app.
Publish schema changes
Content screens change after the CLI publishes a new schema:
pnpm exec cms0 buildUse cms0 dev while developing so the schema updates as your entry file changes.
Success check
A content change is complete when the admin UI saves it and the app reads the updated value through @cms0/cms0.