Svelte Guideline: SvelteKit — Use $app/stores for app state. Description: $page $navigating $updated. Do: $page for current page data. Don't: Manual URL parsing. Good Example: import { page } from '$app/stores'. Bad Example: window.location.pathname. Severity: Medium. Docs: https://kit.svelte.dev/docs/modules#$app-stores.