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.
npx agentmods add commands/zircote/svelte-lsp/setupgit clone --depth 1 https://github.com/zircote/svelte-lspWhat 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.
| Model | Per session | Once 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 |
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 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
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.
- 3d ago First seen · 283 lines · 9 tokens per session scan C 5d5407117632
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.
Other commands, from other repositories
setup
Interactive setup for Vue.js LSP development environment.
setup
Interactive setup for C/C++ LSP development environment.
setup
Interactive setup for Python LSP development environment.
setup
Interactive setup for YAML LSP development environment.
setup
Interactive setup for Scala LSP development environment.
setup
Interactive setup for Bash LSP development environment.