setup

An interactive setup command for Svelte development tools. Svelte is a framework for building web interfaces, and an LSP server provides editor features such as code checking and assistance.

In plain words
What is it for?
It helps install and verify the Svelte language server, type checker, formatter, and linter in a Svelte project.
Why use it?
It removes the need to install and check each Svelte tool separately.

Command

Part of the svelte-lsp plugin — 1 command shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/zircote/svelte-lsp/setup
Clone the repo
git clone --depth 1 https://github.com/zircote/svelte-lsp

Or install svelte-lsp, the plugin that ships this one along with the rest of its 1 command.

Per session 9 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,588 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00009 $0.01588
Opus 5 $0.00005 $0.00794
Sonnet 5 $0.00002 $0.00318
Haiku 4.5 $0.00001 $0.00159

Measured 3d ago against content hash 5d5407117632, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade C, and why

setup scanned grade C with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash
commands/setup.md · 283 lines

How it starts

The opening of the file, as written. The whole thing — 283 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Svelte LSP Setup

This command will configure your Svelte development environment with svelte-language-server and essential tools.

Current Tool Versions (January 2026)

Tool Version Notes
svelte-language-server 0.17.x LSP server
svelte-check 4.0.x Type checking
prettier 3.x Code formatter
prettier-plugin-svelte 3.x Svelte formatter
eslint 9.x Linter
eslint-plugin-svelte 3.x Svelte linter

Prerequisites Check

First, verify Node.js is installed:

node --version
npm --version

If not installed, download from https://nodejs.org/ or use a version manager:

# macOS (Homebrew)
brew install node

# Linux (nvm)
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash
nvm install --lts

Installation Steps

1. Install svelte-language-server (Global)

Check if svelte-language-server is available:

which svelte-language-server || echo "svelte-language-server not found"

Install globally:

npm install -g svelte-language-server

Verify installation:

svelte-language-server --version

2. Install Development Tools (Project-Level)

If you're in a Svelte project, install development dependencies:

# Type checking
npm install -D svelte-check

# Formatting
npm install -D prettier prettier-plugin-svelte

# Linting
npm install -D eslint eslint-plugin-svelte

3. Configure Prettier

Create .prettierrc in your project root:

cat > .prettierrc << 'EOF'
{
  "plugins": ["prettier-plugin-svelte"],
  "semi": true,
  "singleQuote": true,
  "trailingComma": "es5",
  "printWidth": 100,
  "tabWidth": 2,
  "useTabs": false,
  "overrides": [
    {
      "files": "*.svelte",
      "options": {
        "parser": "svelte"
      }
    }
  ]
}
EOF

4. Configure ESLint

Initialize ESLint configuration:

# Create .eslintrc.json
cat > .eslintrc.json << 'EOF'
{
  "extends": ["eslint:recommended", "plugin:svelte/recommended"],
  "parserOptions": {
    "ecmaVersion": 2020,
    "sourceType": "module"
  },
  "env": {
    "browser": true,
    "es2017": true,
    "node": true
  },
  "rules": {
    "no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }]
  }
}
EOF

Read the full file on GitHub · 283 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 283 lines · 9 tokens per session scan C 5d5407117632

Subscribe to this mod's changes

setup is a command published in the GitHub repository zircote/svelte-lsp (5 stars, last pushed 23d ago), licensed MIT. It adds 9 tokens to every session and 1,588 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.