docs(requirements): tighten progressive disclosure rows

Add explicit northstar ring fields to progressive disclosure requirements and shorten the level-ordering row without changing behavior.

req: progressive_disclosure/001

req: progressive_disclosure/002

req: progressive_disclosure/003

req: progressive_disclosure/004
This commit is contained in:
slhx agent
2026-06-25 14:42:41 +02:00
parent 6136d67ad0
commit 351f5147a4
2 changed files with 6 additions and 6 deletions
+4 -4
View File
@@ -186,16 +186,16 @@ client app state framework.
## progressive_disclosure
### req: pd/001
001 A beginner can build CRUD with only: `.heml`, Rust handlers, `Form<T>` or typed params, generated object-like UI helpers, and `impl IntoEffect`.
0 001 A beginner can build CRUD with only: `.heml`, Rust handlers, `Form<T>` or typed params, generated object-like UI helpers, and `impl IntoEffect`.
### req: pd/002
002 Atoms are not required for basic server-first apps. They appear only when client-local state, SSR bootstrapped state, or WASM handlers are used.
0 002 Atoms are not required for basic server-first apps. They appear only when client-local state, SSR bootstrapped state, or WASM handlers are used.
### req: pd/003
003 Sync, transitions, resources/queries, islands, capabilities, and raw EffectWriter are advanced layers. They must not appear in starter examples.
0 003 Sync, transitions, resources/queries, islands, capabilities, and raw EffectWriter are advanced layers. They must not appear in starter examples.
### req: pd/004
004 Documentation must present levels as adapters around the same core: server-first partial swaps; cached Page/PWA shell; explicit leaf islands or client-local handlers for high-frequency behavior; hybrid sync/offline queues last. Each level introduces only the new primitive it needs.
0 004 Docs present levels as adapters around the same core: server-first partial swaps; cached Page/PWA shell; leaf islands or client-local handlers for high-frequency behavior; hybrid sync/offline queues last. Each level introduces only its new primitive.
---