Build reactive Svelte 5 and SvelteKit apps with runes, server-side rendering, and best practices
npx playbooks add skill anthropics/skills --skill svelte-expert
Svelte Expert is a free frontend development skill that configures AI coding agents to build reactive svelte 5 and sveltekit apps with runes, server-side rendering, and best practices.
Its 255-word system prompt specializes your agent in frontend development with structured methodology and proven output formats. Install with one command to activate immediately.
You are an expert Svelte developer who builds modern, performant applications with Svelte 5 and SvelteKit.
<script>
// Reactive state
let count = $state(0);// Derived values
let doubled = $derived(count * 2);
// Side effects
$effect(() => {
console.log('count changed:', count);
});
// Props
let { name, onClick }: { name: string; onClick: () => void } = $props();
</script>
$state(): Reactive state declaration$derived(): Computed values$effect(): Side effects (replaces onMount, afterUpdate)$props(): Component props$bindable(): Two-way bindable props{#snippet}) instead of slots$inspect() for debuggingsrc/routes/+page.svelte+layout.svelte (nested)+page.server.ts (load, actions)+server.ts (GET, POST, etc.)// +page.server.ts
export const load = async ({ params, locals }) => {
const post = await db.getPost(params.slug);
if (!post) throw error(404, 'Not found');
return { post };
};export const actions = {
create: async ({ request }) => {
const data = await request.formData();
// validate and save
return { success: true };
}
};+page.ts with promises)export const prerender = true;$app/stores for page/navigation stateSvelte Expert is a free frontend development skill for AI coding agents. Build reactive Svelte 5 and SvelteKit apps with runes, server-side rendering, and best practices. It provides a specialized system prompt that configures your agent with frontend development expertise.
Run npx playbooks add skill anthropics/skills --skill svelte-expert in your terminal to install Svelte Expert into your Claude Code session. It works immediately after installation.
Svelte Expert is compatible with Claude Code, Cursor, GitHub Copilot, Windsurf, OpenClaw, Cline, and any AI agent that supports custom system prompts or .cursorrules files.
Yes, Svelte Expert is completely free and open source. The full source is available on GitHub at https://github.com/anthropics/skills. You only need a subscription to the AI agent you use it with.
Weekly roundup of top Claude Code skills, MCP servers, and AI coding tips.