svelte-migrate
Converts Svelte 4 component syntax to Svelte 5's modern runes-based reactivity system.
Install
mkdir -p .claude/skills/svelte-migrate && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/2907" && unzip -o skill.zip -d .claude/skills/svelte-migrate && rm skill.zipInstalls to .claude/skills/svelte-migrate
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Migrate a Svelte 4 component to Svelte 5 runes syntax. Use when asked to migrate, convert, or upgrade a .svelte file to Svelte 5.Key capabilities
- →Convert export let props to $props
- →Refactor reactive state to $state
- →Update derived values to $derived
- →Migrate side effects to $effect
- →Replace event dispatchers with callback props
- →Convert slots to snippets
How it works
The skill systematically replaces legacy Svelte 4 reactivity patterns like export let, $:, and event dispatchers with Svelte 5 runes syntax such as $props(), $state(), $derived(), and $effect().
Inputs & outputs
When to use svelte-migrate
- →Upgrading components to Svelte 5
- →Converting export let to props
- →Refactoring state to runes
- →Updating derived reactive variables
About this skill
Svelte 4 to 5 Migration
Migrate individual Svelte files from v4 to v5 runes syntax.
Usage
When the user provides a file path, migrate that specific file following the patterns below.
Migration Patterns
1. Props: export let → $props()
Before:
<script lang="ts">
export let name: string;
export let count = 0;
export let optional: string | undefined = undefined;
let className = '';
export { className as class };
</script>
After:
<script lang="ts">
interface Props {
name: string;
count?: number;
optional?: string;
class?: string;
}
let { name, count = 0, optional, class: className = '' }: Props = $props();
</script>
2. State: let → $state()
Only reactive variables that are reassigned or mutated need $state().
Before:
<script lang="ts">
let count = 0;
let items = [];
</script>
After:
<script lang="ts">
let count = $state(0);
let items = $state<string[]>([]);
</script>
3. Derived Values: $: → $derived()
Before:
<script lang="ts">
$: doubled = count * 2;
$: filtered = items.filter((i) => i.active);
</script>
After:
<script lang="ts">
const doubled = $derived(count * 2);
const filtered = $derived(items.filter((i) => i.active));
</script>
For complex derivations use $derived.by():
Before:
<script lang="ts">
$: {
let total = 0;
for (const item of items) total += item.value;
sum = total;
}
</script>
After:
<script lang="ts">
const sum = $derived.by(() => {
let total = 0;
for (const item of items) total += item.value;
return total;
});
</script>
4. Side Effects: $: statements → $effect()
Before:
<script lang="ts">
$: console.log('count changed:', count);
$: if (count > 10) alert('High count!');
$: document.title = `Count: ${count}`;
</script>
After:
<script lang="ts">
$effect(() => {
console.log('count changed:', count);
});
$effect(() => {
if (count > 10) alert('High count!');
});
$effect(() => {
document.title = `Count: ${count}`;
});
</script>
5. Event Handlers: on:event → onevent
Before:
<button on:click={handleClick}>Click</button>
<button on:click={() => count++}>Increment</button>
<button on:click|preventDefault={submit}>Submit</button>
<input on:input={handleInput} on:focus={handleFocus} />
After:
<button onclick={handleClick}>Click</button>
<button onclick={() => count++}>Increment</button>
<button
onclick={(e) => {
e.preventDefault();
submit(e);
}}>Submit</button
>
<input oninput={handleInput} onfocus={handleFocus} />
Event modifiers like |preventDefault, |stopPropagation must be handled manually in the handler.
6. Component Events: createEventDispatcher → callback props
Before:
<script lang="ts">
import { createEventDispatcher } from 'svelte';
const dispatch = createEventDispatcher<{
change: string;
submit: { data: FormData };
}>();
function handleChange(value: string) {
dispatch('change', value);
}
</script>
After:
<script lang="ts">
interface Props {
onchange?: (value: string) => void;
onsubmit?: (data: { data: FormData }) => void;
}
let { onchange, onsubmit }: Props = $props();
function handleChange(value: string) {
onchange?.(value);
}
</script>
Parent component changes:
Before: <Child on:change={handler} />
After: <Child onchange={handler} />
7. Forwarding Events: on:event → explicit handler
Before:
<button on:click>Click me</button>
After:
<script lang="ts">
interface Props {
onclick?: (e: MouseEvent) => void;
}
let { onclick }: Props = $props();
</script>
<button {onclick}>Click me</button>
8. Slots → Snippets
Default slot:
Before:
<slot />
After:
<script lang="ts">
import type { Snippet } from 'svelte';
interface Props {
children?: Snippet;
}
let { children }: Props = $props();
</script>
{@render children?.()}
Named slots:
Before:
<slot name="header" />
<slot />
<slot name="footer" />
After:
<script lang="ts">
import type { Snippet } from 'svelte';
interface Props {
header?: Snippet;
children?: Snippet;
footer?: Snippet;
}
let { header, children, footer }: Props = $props();
</script>
{@render header?.()}
{@render children?.()}
{@render footer?.()}
Slots with props (let:):
Before:
<slot item={currentItem} index={i} />
<!-- Usage -->
<List {items} let:item let:index>
<span>{index}: {item.name}</span>
</List>
After:
<script lang="ts">
import type { Snippet } from 'svelte';
interface Props {
children?: Snippet<[{ item: Item; index: number }]>;
}
let { children }: Props = $props();
</script>
{@render children?.({ item: currentItem, index: i })}
<!-- Usage -->
<List {items}>
{#snippet children({ item, index })}
<span>{index}: {item.name}</span>
{/snippet}
</List>
9. Bindable Props: bind: → $bindable()
Before:
<script lang="ts">
export let value = '';
</script>
<!-- Parent -->
<Input bind:value={name} />
After:
<script lang="ts">
interface Props {
value?: string;
}
let { value = $bindable('') }: Props = $props();
</script>
<!-- Parent stays the same -->
<Input bind:value={name} />
10. Lifecycle: beforeUpdate/afterUpdate → $effect
Before:
<script lang="ts">
import { beforeUpdate, afterUpdate } from 'svelte';
beforeUpdate(() => {
console.log('before update');
});
afterUpdate(() => {
console.log('after update');
});
</script>
After:
<script lang="ts">
$effect.pre(() => {
console.log('before update');
});
$effect(() => {
console.log('after update');
});
</script>
IMPORTANT: onMount and onDestroy remain valid and should be preserved!
- Use
onMountfor initialization logic that should only run once when the component first mounts - Use
$effectfor reactive side effects that should re-run when dependencies change - Never convert
onMountto$effectunless the logic genuinely needs to be reactive
Examples:
Keep as onMount:
// ✅ One-time initialization - keep as onMount
onMount(() => {
if (query) {
$filters = toListWorkflowFilters(query, $searchAttributes);
}
});
Convert to $effect:
// ✅ Reactive side effect - convert to $effect
$effect(() => {
document.title = `Count: ${count}`; // re-runs when count changes
});
11. Dynamic Components: <svelte:component> → direct usage
Before:
<svelte:component this={DynamicComponent} {prop} />
After:
<DynamicComponent {prop} />
Or with conditional:
{#if Component}
<Component {prop} />
{/if}
12. class: Directive → Conditional Classes
The class: directive still works but consider using conditional expressions:
Before:
<div class:active={isActive} class:disabled>
After (either works):
<div class:active={isActive} class:disabled>
<!-- or -->
<div class={`${isActive ? 'active' : ''} ${disabled ? 'disabled' : ''}`}>
13. App State
Before:
import {page} from '$app/stores'
After:
import {page} from '$app/state'
Workflow
- Read the file to understand its current structure
- Identify all Svelte 4 patterns that need migration
- Apply transformations systematically:
- Props first (export let → $props)
- State variables (let → $state where needed)
- Derived values ($: assignments → $derived)
- Side effects ($: statements → $effect)
- Event handlers (on: → on)
- Component events (dispatch → callback props)
- Slots (slot → snippets)
- Update imports (add Snippet type if needed, remove createEventDispatcher if no longer used)
- Ensure TypeScript types are correct
- Run
pnpm checkto verify no type errors
Important Notes
- Keep
onMountandonDestroy- they're still valid context="module"scripts are now<script module>- CSS/styles don't change
{#if},{#each},{#await}blocks remain unchangedbind:directives on elements remain unchangeduse:action directives remain unchangedtransition:,in:,out:,animate:directives remain unchanged
When not to use it
- →When working with Svelte 4 or older codebases that do not require migration
Prerequisites
Limitations
- →Requires manual handling of event modifiers
- →Does not automatically update CSS or non-reactive logic
How it compares
It automates the manual syntax translation process for individual files, ensuring correct migration to the runes-based reactivity model.
Compared to similar skills
svelte-migrate side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| svelte-migrate (this skill) | 2 | 7mo | No flags | Intermediate |
| tanstack-query | 7 | 2mo | No flags | Intermediate |
| react-modernization | 21 | 2mo | No flags | Advanced |
| writing-react-effects | 1 | 3mo | No flags | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
tanstack-query
exceptionless
Data fetching and caching with TanStack Query in Svelte. Query patterns, mutations, cache invalidation, WebSocket-driven updates, and optimistic updates. Keywords: createQuery, createMutation, TanStack Query, query keys, cache invalidation, optimistic updates, refetch, stale time, @exceptionless/fetchclient, WebSocket
react-modernization
wshobson
Upgrade React applications to latest versions, migrate from class components to hooks, and adopt concurrent features. Use when modernizing React codebases, migrating to React Hooks, or upgrading to latest React versions.
writing-react-effects
dust-tt
Writes React components without unnecessary useEffect. Use when creating/reviewing React components, refactoring effects, or when code uses useEffect to transform data or handle events.
rendering-conditional-render
TheOrcDev
Use explicit ternary operators instead of && for conditional rendering. Apply when rendering values that could be 0, NaN, or other falsy values that might render unexpectedly.
vue2-to-vue3-migration
agoodays
用于 ant-design-vue(Vue2) 到 ant-design-vue3(Vue3) 的页面、组件或模块迁移工作流。适用于单页迁移、批量迁移、迁移拆单、迁移验收、迁移风险盘点。
zustand
lobehub
Zustand state management guide. Use when working with store code (src/store/**), implementing actions, managing state, or creating slices. Triggers on Zustand store development, state management questions, or action implementation.