svelte5-runes

Which rune? Props: $props() | Bindable: $bindable() | Computed: $derived() | Side effect: $effect() | State: $state()

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "svelte5-runes" with this command: npx skills add linehaul-ai/linehaulai-claude-marketplace/linehaul-ai-linehaulai-claude-marketplace-svelte5-runes

Svelte 5 Runes

Quick Start

Which rune? Props: $props() | Bindable: $bindable() | Computed: $derived() | Side effect: $effect() | State: $state()

Key rules: Runes are top-level only. $derived can be overridden (use const for read-only). Use consistent Svelte 5 syntax. Objects/arrays are deeply reactive by default.

Example

<script> let count = $state(0); // Mutable state const doubled = $derived(count * 2); // Computed (const = read-only)

$effect(() => {
	console.log(`Count is ${count}`); // Side effect
});

</script>

<button onclick={() => count++}> {count} (doubled: {doubled}) </button>

Reference Files

Before suggesting code, check these:

  • references/reactivity-patterns.md - When to use each rune

  • references/component-api.md - $props, $bindable patterns

  • references/snippets-vs-slots.md - New snippet syntax

  • references/common-mistakes.md - Anti-patterns with fixes

Notes

  • Event handlers: Use onclick not on:click in Svelte 5

  • Children: Use {@render children()} in layouts

  • Check Svelte version before suggesting syntax

  • Svelte 5.25+ breaking change: $derived can now be reassigned (use const for read-only)

  • Last verified: 2025-01-11

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

laneweavertms-feature-workflow

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

wiki-agents-md

No summary provided by upstream source.

Repository SourceNeeds Review
General

geospatial-postgis-patterns

No summary provided by upstream source.

Repository SourceNeeds Review
General

rbac-authorization-patterns

No summary provided by upstream source.

Repository SourceNeeds Review