What is MCP Resources?
Addressable context (`byob://project/<id>/context`, skill packs) agents read before acting. Resources give tools the project memory that bare function calls lack.
Related terms
Model Context Protocol (MCP)
The open standard connecting agents to tools: initialize, list tools, call, read resources, ping. MCP turns chat models into operators with real capabilities.
AIR Coding Skills
Reusable synced knowledge packs (SEO, auth, payments, PWA) that agents load per domain. Skills keep every project on the same implementation patterns without re-teaching the model.
Session Compaction
Summarizing long build conversations so work continues within context limits without losing decisions. Compaction plus model lock keeps multi-session projects coherent.
Svelte Runes
The `$state`, `$derived`, `$effect`, and `$props` primitives powering Svelte 5 reactivity. Runes are mandatory in generated code: explicit, compilable, and consistent across every component.
File-Based Routing
Pages defined by file location: `+page.svelte` renders, `+layout.svelte` wraps, `+server.js` serves data. The route tree is the app map — no separate router config to drift.
Load Function
Server-side data loading for a route before it renders. Load on the server for content crawlers and users need immediately; reach for client fetching only for interactive extras.