| name | svelte-code-writer |
| description | CLI tools for Svelte 5 documentation lookup and code analysis. MUST be used whenever creating, editing or analyzing any Svelte component (.svelte) or Svelte module (.svelte.ts/.svelte.js). If possible, this skill should be executed within the svelte-file-editor agent for optimal results. |
Svelte 5 Code Writer
CLI Tools
Use the repo-installed @sveltejs/mcp@0.1.24 CLI for Svelte-specific assistance:
vp exec -- svelte-mcp <command>
Run these commands from the repository root. Always include the -- separator after vp exec; without it, Vite+ exits before running svelte-mcp. Do not use npx, npm, or bun x for this tool.
List Documentation Sections
vp exec -- svelte-mcp list-sections
Lists all available Svelte 5 and SvelteKit documentation sections with titles and paths.
Get Documentation
vp exec -- svelte-mcp get-documentation "<section1>,<section2>,..."
Retrieves full documentation for specified sections. Use after list-sections to fetch relevant docs.
Example:
vp exec -- svelte-mcp get-documentation '$state,$derived,$effect'
Svelte Autofixer
vp exec -- svelte-mcp svelte-autofixer "<code_or_path>" [options]
Analyzes Svelte code and suggests fixes for common issues.
Options:
--async - Enable async Svelte mode (default: false)
--svelte-version - Target version: 4 or 5 (default: 5)
Examples:
vp exec -- svelte-mcp svelte-autofixer '<script>let count = $state(0);</script>'
vp exec -- svelte-mcp svelte-autofixer ./frontend/src/lib/Component.svelte
vp exec -- svelte-mcp svelte-autofixer ./Component.svelte --svelte-version 4
Important: When passing code with runes ($state, $derived, etc.) via the terminal, wrap inline code in single quotes. If you use double quotes, escape $ as \$ to prevent shell variable substitution.
Workflow
- Uncertain about syntax? Run
list-sections then get-documentation for relevant topics with vp exec -- svelte-mcp
- Reviewing/debugging? Run
svelte-autofixer on the code with vp exec -- svelte-mcp to detect issues
- Always validate - Run
svelte-autofixer before finalizing any Svelte component