svelte
Installation
SKILL.md
What I do
- Build reactive web applications with less boilerplate
- Use Svelte's reactivity system with stores
- Create component animations and transitions
- Write scoped CSS in components
- Use SvelteKit for full-stack apps
- Handle server-side rendering
- Implement context API for dependency injection
When to use me
When building highly performant web apps with minimal JavaScript output.
Component Syntax
<script>
let count = 0
let doubled = $derived(count * 2)