Expert Svelte/SvelteKit development assistant for building components, utilities, and applications. Use when creating Svelte components, SvelteKit applications, implementing reactive patterns, handling state management, working with stores, transitions, animations, or any Svelte/SvelteKit development task. Includes comprehensive documentation access, code validation with svelte-autofixer, and playground link generation.
70
85%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Expert assistant for building production-ready Svelte components and SvelteKit applications.
Use get_documentation tool with paths from references/documentation-paths.md to access official Svelte/SvelteKit documentation.
Every Svelte component or module MUST be validated:
svelte-autofixer tool with the codeAfter code is finalized, ask user if they want a playground link:
playground-link tool for final codeApp.svelte as entry point<script>
// Svelte 5 with runes
let count = $state(0);
const increment = () => {
count++;
};
</script>
<button onclick={increment}>
Count: {count}
</button>
<style>
button {
/* Component styles */
}
</style>$props() rune in Svelte 5$state() for reactive values$effect() for side effectssvelte/store for shared statebd02b72
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.