From svelte-skills
Guides SvelteKit deployment using adapters (static, Node, Cloudflare), Vite/pnpm configs, library authoring, PWA setup, and production builds.
How this skill is triggered — by the user, by Claude, or both
Slash command
/svelte-skills:svelte-deploymentThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**pnpm 10+:** Add prepare script (postinstall disabled by default):
pnpm 10+: Add prepare script (postinstall disabled by default):
{
"scripts": {
"prepare": "svelte-kit sync"
}
}
Vite 7: Update both packages together:
pnpm add -D vite@7 @sveltejs/vite-plugin-svelte@6
# Static site
pnpm add -D @sveltejs/adapter-static
# Node server
pnpm add -D @sveltejs/adapter-node
# Cloudflare
pnpm add -D @sveltejs/adapter-cloudflare
Transfer-Encoding: chunked (breaks streaming)svelte in keywords AND peerDependencieskit.output.bundleStrategy: 'single'npx claudepluginhub spences10/svelte-skills-kit --plugin svelte-skillsGuides configuring SvelteKit adapters for Node, Vercel, Cloudflare Pages, and Netlify deployment.
Builds full-stack SvelteKit web apps with file-based routing, SSR, SSG, API routes, form actions, and load functions. Activates for +page.svelte, +layout.svelte, or Svelte full-stack queries.
Svelte runes-first reactivity and SvelteKit fullstack conventions. Invoke whenever task involves any interaction with Svelte code — writing, reviewing, refactoring, debugging, or understanding .svelte, .svelte.js, .svelte.ts files and SvelteKit projects.