Compare commits

..

18 Commits

Author SHA1 Message Date
Stanislav Khromov
7440f7a8a7 add adapter-node 2025-09-24 22:11:11 +02:00
Stanislav Khromov
5923a98d3c Update README.md 2025-09-24 22:00:07 +02:00
Stanislav Khromov
de106c2f24 wip 2025-09-24 21:58:29 +02:00
Stanislav Khromov
7d2ad3fe12 Update CLAUDE.md 2025-09-24 21:55:20 +02:00
Stanislav Khromov
f9ca27b4bb format 2025-09-24 21:42:25 +02:00
Stanislav Khromov
0d773cf133 Delete db.ts 2025-09-24 21:42:16 +02:00
Stanislav Khromov
3b58d51336 Update pathUtils.ts 2025-09-24 21:42:14 +02:00
Stanislav Khromov
67f4571b2e Update schema.js 2025-09-24 21:41:58 +02:00
Stanislav Khromov
31d64712f0 Update pnpm-lock.yaml 2025-09-24 21:40:18 +02:00
Stanislav Khromov
27a6114761 Merge branch 'main' into init-docs 2025-09-24 21:39:19 +02:00
paoloricciuti
f355e6af78 fix: move everything where it should be 2025-09-23 23:31:21 +02:00
paoloricciuti
54f1ae96be Merge branch 'main' into init-docs 2025-09-23 23:10:36 +02:00
Stanislav Khromov
4def7a777a Merge branch 'init-docs' of https://github.com/sveltejs/mcp into init-docs 2025-09-23 23:02:51 +02:00
paoloricciuti
72b894e438 Merge branch 'main' into init-docs 2025-09-22 10:47:00 +02:00
Stanislav Khromov
65ecfa58f8 Create +server.ts 2025-09-22 00:59:43 +02:00
Stanislav Khromov
c15503d847 wip 2025-09-22 00:55:14 +02:00
Stanislav Khromov
250b1be7aa Refactor cache service to use Drizzle ORM 2025-09-22 00:05:03 +02:00
Stanislav Khromov
7be32f6086 wip 2025-09-21 23:57:17 +02:00
435 changed files with 3850 additions and 23584 deletions

View File

@@ -1,8 +0,0 @@
# Changesets
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

View File

@@ -1,5 +0,0 @@
---
'@sveltejs/mcp': patch
---
fix: prevent `imported_runes` suggestion from being added for libs that are not svelte

View File

@@ -1,11 +0,0 @@
{
"$schema": "https://unpkg.com/@changesets/config@3.1.1/schema.json",
"changelog": ["@svitejs/changesets-changelog-github-compact", { "repo": "sveltejs/mcp" }],
"commit": false,
"fixed": [],
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": ["!@sveltejs/mcp"]
}

View File

@@ -1,5 +0,0 @@
---
'@sveltejs/mcp': minor
---
Adds LLM-condensed documentation for smaller context usage

View File

@@ -1,4 +1,3 @@
.claude
.github
.vscode
documentation/
*.test.ts

View File

@@ -1,4 +0,0 @@
packages/mcp-server/src/use_cases.json
packages/mcp-server/src/mcp/autofixers
packages/mcp-server/src/distilled.json
packages/mcp-server/src/distilled-verification.json

View File

@@ -13,15 +13,15 @@ jobs:
steps:
- name: Checkout Repository
uses: actions/checkout@v5
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10.18.2
version: 10
- name: Setup Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'

View File

@@ -13,15 +13,15 @@ jobs:
steps:
- name: Checkout Repository
uses: actions/checkout@v5
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10.18.2
version: 10
- name: Setup Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'

View File

@@ -1,40 +0,0 @@
name: Publish to MCP Registry
on:
workflow_call:
secrets:
MCP_KEY:
required: true
jobs:
publish-mcp:
name: Publish to MCP Registry
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v5
- name: Publish to MCP Registry
working-directory: packages/mcp-stdio
env:
MCP_KEY: ${{ secrets.MCP_KEY }}
run: |
NAME=mcp-publisher_1.2.3_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz
# Download MCP Publisher pinned to v1.2.3 using latest https for security and save it to a file named mcp-publisher.tar.gz
curl --proto '=https' --proto-redir '=https' --tlsv1.2 -fL "https://github.com/modelcontextprotocol/registry/releases/download/v1.2.3/$NAME" -O
# Verify the SHA256 checksum of the downloaded file
sha256sum --ignore-missing -c ./checksums/registry_1.2.3_checksums.txt
# Extract the tarball
mkdir tmp
tar -xzf $NAME --no-same-owner --no-same-permissions -C tmp
# Install the MCP Publisher binary
install -m 0755 tmp/mcp-publisher .
# Login using DNS
./mcp-publisher login dns --domain svelte.dev --private-key "${MCP_KEY}"
# Publish to MCP Registry
./mcp-publisher publish

View File

@@ -1,69 +0,0 @@
name: Release
on:
push:
branches:
- main
permissions: {}
jobs:
release:
permissions:
contents: write # to create release (changesets/action)
id-token: write # OpenID Connect token needed for provenance
pull-requests: write # to create pull request (changesets/action)
# prevents this action from running on forks
if: github.repository == 'sveltejs/mcp'
name: Release
runs-on: ${{ matrix.os }}
outputs:
published: ${{ steps.changesets.outputs.published }}
strategy:
matrix:
# pseudo-matrix for convenience, NEVER use more than a single combination
node: [24]
os: [ubuntu-latest]
steps:
- name: checkout
uses: actions/checkout@v5
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
package-manager-cache: false # pnpm is not installed yet
- name: install pnpm
shell: bash
run: |
PNPM_VER=$(jq -r '.packageManager | if .[0:5] == "pnpm@" then .[5:] else "packageManager in package.json does not start with pnpm@\n" | halt_error(1) end' package.json)
echo installing pnpm version $PNPM_VER
npm i -g pnpm@$PNPM_VER
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
package-manager-cache: true # caches pnpm via packageManager field in package.json
- name: install
run: pnpm install --frozen-lockfile --prefer-offline --ignore-scripts
- name: build
run: pnpm run --filter ./packages/mcp-stdio/ build
- name: Create Release Pull Request or Publish to npm
id: changesets
# pinned for security, always review third party action code before updating
uses: changesets/action@e0145edc7d9d8679003495b11f87bd8ef63c0cba # v1.5.3
with:
# This expects you to have a script called changeset:version version that calls changeset version and updated what it needs to be updated
version: pnpm changeset:version
# This expects you to have a script called release which does a build for your packages and calls changeset publish
publish: pnpm release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_CONFIG_PROVENANCE: true
publish-mcp:
needs: release
if: needs.release.outputs.published == 'true'
uses: ./.github/workflows/publish-mcp.yml
secrets:
MCP_KEY: ${{ secrets.MCP_KEY }}

View File

@@ -13,15 +13,15 @@ jobs:
steps:
- name: Checkout Repository
uses: actions/checkout@v5
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10.18.2
version: 10
- name: Setup Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'

View File

@@ -1,78 +0,0 @@
name: Update Prompt Documentation
on:
push:
branches:
- main
paths:
- 'packages/mcp-server/src/mcp/handlers/prompts/**'
permissions:
contents: write
pull-requests: write
jobs:
update-docs:
# prevents this action from running on forks
if: github.repository == 'sveltejs/mcp'
name: Update Prompt Documentation
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
package-manager-cache: false # pnpm is not installed yet
- name: Install pnpm
shell: bash
run: |
PNPM_VER=$(jq -r '.packageManager | if .[0:5] == "pnpm@" then .[5:] else "packageManager in package.json does not start with pnpm@\n" | halt_error(1) end' package.json)
echo installing pnpm version $PNPM_VER
npm i -g pnpm@$PNPM_VER
- name: Setup Node.js with pnpm cache
uses: actions/setup-node@v6
with:
node-version: 24
package-manager-cache: true # caches pnpm via packageManager field in package.json
- name: Install dependencies
run: pnpm install --frozen-lockfile --prefer-offline --ignore-scripts
- name: Generate prompt documentation
run: pnpm generate-prompt-docs
- name: Check for changes
id: git-check
run: |
git diff --exit-code documentation/docs/30-capabilities/30-prompts.md || echo "changed=true" >> $GITHUB_OUTPUT
- name: Create Pull Request
if: steps.git-check.outputs.changed == 'true'
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: 'docs: update prompts documentation'
branch: docs/update-prompt-docs
delete-branch: true
title: 'docs: update prompt documentation'
body: |
## Summary
Automatically generated documentation update for MCP prompts.
This PR was triggered by changes to the prompts folder in `packages/mcp-server/src/mcp/handlers/prompts/`.
## Changes
- Updated `documentation/docs/30-capabilities/30-prompts.md` with latest prompt definitions
## Generated by
GitHub Action: Update Prompt Documentation
labels: |
documentation
automated

View File

@@ -1,9 +1,8 @@
{
"mcpServers": {
"svelte": {
"type": "stdio",
"command": "node",
"args": ["packages/mcp-stdio/dist/index.js"]
"svelte-llm": {
"type": "http",
"url": "https://svelte-llm.stanislav.garden/mcp/mcp"
}
}
}

View File

@@ -8,10 +8,4 @@ bun.lockb
# Miscellaneous
/static/
/drizzle/
/**/.svelte-kit/*
# Claude Code
.claude/
# MCP Server Markdown Files
packages/mcp-server/**/*.md
/**/.svelte-kit/*

View File

@@ -23,69 +23,11 @@
"scope": "javascript,typescript",
"prefix": "!autofixer",
"body": [
"import type { Autofixer } from './index.js';",
"import type { Autofixer } from '.';",
"export const ${1:autofixer_name}: Autofixer = {",
"\t$0",
"};",
],
"description": "Create a setup export for an autofixer",
},
"Prompt Generator": {
"scope": "javascript,typescript",
"prefix": "!prompt",
"body": [
"import type { SvelteMcp } from '../../index.js';",
"",
"/**",
" * Function that actually generates the prompt string. You can use this in the MCP server handler to generate the prompt, it can accept arguments",
" * if needed (it will always be invoked manually so it's up to you to provide the arguments).",
" */",
"function ${1:prompt_name}() {",
"\treturn `$0`;",
"}",
"",
"/**",
" * This function is used to generate the prompt to update the docs in the script `/scripts/update-docs-prompts.ts` it should use the default export",
" * function and pass in the arguments. Since it will be included in the documentation if it's an argument that the MCP will expose it should",
" * be in the format [NAME_OF_THE_ARGUMENT] to signal the user that it can substitute it.",
" * ",
" * The name NEEDS to be `generate_for_docs`.",
" */",
"export async function generate_for_docs() {",
"\treturn ${1:prompt_name}();",
"}",
"",
"/**",
" * Human readable description of what the prompt does. It will be included in the documentation.",
" * ",
" * The name NEEDS to be `docs_description`.",
" */",
"export const docs_description = '';",
"",
"export function setup_${1:prompt_name}(server: SvelteMcp) {",
"\tserver.prompt(",
"\t\t{",
"\t\t\tname: '${1:prompt_name}',",
"\t\t\ttitle: '${2:title}',",
"\t\t\tdescription:",
"\t\t\t\t'${3:llm_description}',",
"\t\t},",
"\t\tasync () => {",
"\t\t\treturn {",
"\t\t\t\tmessages: [",
"\t\t\t\t\t{",
"\t\t\t\t\t\trole: 'assistant',",
"\t\t\t\t\t\tcontent: {",
"\t\t\t\t\t\t\ttype: 'text',",
"\t\t\t\t\t\t\ttext: ${1:prompt_name}(),",
"\t\t\t\t\t\t},",
"\t\t\t\t\t},",
"\t\t\t\t],",
"\t\t\t};",
"\t\t},",
"\t);",
"}",
],
"description": "Create a setup export for a prompt generator",
},
}

2
.vscode/mcp.json vendored
View File

@@ -3,7 +3,7 @@
"Svelte MCP": {
"type": "stdio",
"command": "node",
"args": ["packages/mcp-stdio/dist/index.js"]
"args": ["dist/lib/stdio.js"]
}
},
"inputs": []

342
CLAUDE.md
View File

@@ -2,14 +2,14 @@
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
## Project Structure
## Monorepo Structure
This is a monorepo containing the official Svelte MCP (Model Context Protocol) server implementation with multiple packages:
This is a pnpm monorepo containing Svelte MCP (Model Context Protocol) server implementations across multiple packages and applications:
- **`packages/mcp-server/`** - Core MCP server logic with tools, prompts, and autofixers
- **`packages/mcp-stdio/`** - CLI wrapper for running MCP server via stdio transport (`@sveltejs/mcp` on npm)
- **`packages/mcp-schema/`** - Shared database schema definitions using Drizzle ORM
- **`apps/mcp-remote/`** - SvelteKit web application for remote HTTP MCP access and documentation comparison
- **apps/mcp-remote**: SvelteKit web application with MCP server functionality
- **packages/mcp-server**: Core MCP server implementation with code analysis tools
- **packages/mcp-stdio**: Standalone MCP server CLI with STDIO transport
- **packages/mcp-schema**: Shared schema definitions and database utilities
## Development Commands
@@ -18,218 +18,96 @@ This is a monorepo containing the official Svelte MCP (Model Context Protocol) s
```bash
pnpm i
cp apps/mcp-remote/.env.example apps/mcp-remote/.env
# Set DATABASE_URL, DATABASE_TOKEN, and VOYAGE_API_KEY (optional) in apps/mcp-remote/.env
# Set the VOYAGE_API_KEY for embeddings support in .env
```
### Starting the mcp-remote app in dev mode
```bash
# Start the SvelteKit development server for mcp-remote (from root)
pnpm dev
```
### Common Commands
Or navigate to the app directory:
- `pnpm dev` - Start SvelteKit development server (apps/mcp-remote)
- `pnpm build` - Build all packages
```bash
cd apps/mcp-remote
pnpm dev
```
### Common Commands (from root)
- `pnpm build` - Build all packages and applications
- `pnpm check` - Run type checking across all packages
- `pnpm lint` - Run prettier check and eslint
- `pnpm lint:fix` - Auto-fix linting issues
- `pnpm format` - Format code with prettier
- `pnpm test` - Run unit tests with vitest
- `pnpm lint` - Run prettier check and eslint across all packages
- `pnpm format` - Format code with prettier across all packages
- `pnpm test` - Run unit tests across all packages
- `pnpm test:watch` - Run tests in watch mode
### Database Commands (apps/mcp-remote)
### mcp-remote App Commands
- `pnpm db:push` - Push schema changes to Turso database
Navigate to `apps/mcp-remote/` to run these commands:
- `pnpm dev` - Start SvelteKit development server
- `pnpm build` - Build the SvelteKit application for production
- `pnpm build:mcp` - Build the MCP server TypeScript files
- `pnpm start` - Run the MCP server (Node.js entry point)
- `pnpm check` - Run Svelte type checking
- `pnpm check:watch` - Run type checking in watch mode
- `pnpm db:push` - Push schema changes to database
- `pnpm db:generate` - Generate migration files
- `pnpm db:migrate` - Run migrations
- `pnpm db:studio` - Open Drizzle Studio
- `pnpm inspect` - Start MCP inspector at http://localhost:6274/
### Documentation Generation Commands (packages/mcp-server)
### MCP Inspector Usage
#### Generate Use Case Summaries
Generate short descriptions of when each documentation section would be useful:
- `pnpm generate-summaries` - Generate use case summaries for all sections
- `pnpm generate-summaries:dry-run` - Preview what would be generated without making API calls
- `pnpm generate-summaries:debug` - Process only 2 sections for debugging
#### Generate Distilled Documentation
Generate condensed versions of the documentation to reduce context size:
- `pnpm generate-distilled` - Generate distilled versions for all sections
- `pnpm generate-distilled:dry-run` - Preview what would be generated without making API calls
- `pnpm generate-distilled:debug` - Process only 2 sections for debugging
#### Verify Distilled Documentation
Verify the accuracy of distilled summaries against original documentation:
- `pnpm verify-distilled` - Verify all distilled summaries for accuracy
- `pnpm show-verification-errors` - Display all sections that failed verification
The verification workflow:
1. Run `pnpm verify-distilled` to verify all distilled summaries
- Loads `distilled.json` containing summaries and original content
- Uses the Anthropic Batch API to send each summary and original content to Claude
- Claude evaluates whether the summary is accurate or contains errors/omissions
- Generates `distilled-verification.json` with results (ACCURATE/NOT_ACCURATE) and reasoning
- Outputs statistics about accuracy rates
2. Run `pnpm show-verification-errors` to see detailed list of all sections that are NOT_ACCURATE
- Displays each problematic section with its reasoning
- Shows summary statistics
**Note:** All documentation generation and verification commands require `ANTHROPIC_API_KEY` to be set in `packages/mcp-server/.env`
### Documentation Updates
- `pnpm generate-prompt-docs` - Update documentation/docs/30-capabilities/30-prompts.md based on prompt handlers
### Publishing Commands
- `pnpm release` - Build and publish to npm using changesets
- `pnpm changeset:version` - Update versions and sync package.json with server.json
### Development Tools
- `pnpm inspect` - Launch MCP inspector at http://localhost:6274/ for testing tools and prompts
After running `pnpm inspect`, visit http://localhost:6274/:
- Transport type: `Streamable HTTP`
- URL: http://localhost:5173/mcp (when dev server is running)
## Architecture
### MCP Server Implementation (`packages/mcp-server/src/mcp/`)
### Monorepo Package Structure
The core MCP server is implemented using the `tmcp` library with:
- **@sveltejs/mcp-remote**: Full SvelteKit application with web interface and MCP server
- **@sveltejs/mcp-server**: Core MCP server logic and code analysis engine (private workspace package)
- **@sveltejs/mcp**: Standalone CLI MCP server with STDIO transport (publishable)
- **@sveltejs/mcp-schema**: Shared database schema and utilities (private workspace package)
- **Transport Layers**: Both HTTP (`@tmcp/transport-http`) and STDIO (`@tmcp/transport-stdio`) support
- **Schema Validation**: Uses Valibot with `ValibotJsonSchemaAdapter`
- **Server Definition**: `packages/mcp-server/src/mcp/index.ts` exports the configured server instance
### mcp-remote App (apps/mcp-remote)
### MCP Tools (`packages/mcp-server/src/mcp/handlers/tools/`)
The main SvelteKit application that provides both web interface and MCP server functionality:
#### get-documentation
- **Entry Point**: `src/index.js` for Node.js MCP server
- **SvelteKit Integration**: `src/hooks.server.ts` integrates MCP HTTP transport with SvelteKit requests
- **MCP Server**: `src/lib/mcp/index.ts` - HTTP and STDIO transport support
- **Database**: SQLite with Drizzle ORM, vector storage for embeddings
- **Content Sync**: `src/lib/server/contentSync.ts` and `src/lib/server/contentDb.ts` for content management
Retrieves documentation content for Svelte 5 or SvelteKit sections. Supports:
### mcp-server Package (packages/mcp-server)
- Single or multiple section names
- Search by title (e.g., "$state") or file path (e.g., "cli/overview")
- Optional distilled versions to optimize context size (default: true)
- Automatically loads distilled content from `distilled.json` when available
Core MCP server implementation shared across applications:
#### list-sections
- **Main Export**: `src/index.ts`
- **MCP Implementation**: `src/mcp/index.ts` using `tmcp` library with Valibot schema validation
- **Code Analysis**: Svelte component parsing with `svelte-eslint-parser` and TypeScript parser
- **Autofixers**: Visitor pattern implementations for code analysis and suggestions
- **Tools**: `svelte-autofixer` - analyzes Svelte code and provides suggestions/fixes
Lists all available Svelte 5 and SvelteKit documentation sections with:
### mcp-stdio Package (packages/mcp-stdio)
- Section titles and file paths
- "use_cases" metadata describing when each section is useful
- Helps LLMs determine which documentation to fetch
Standalone publishable MCP server with STDIO transport:
#### svelte-autofixer
- **CLI Binary**: `svelte-mcp` command
- **Entry Point**: `src/index.ts`
- **Transport**: Uses `@tmcp/transport-stdio` for command-line integration
Analyzes Svelte component or module code and returns suggestions/fixes:
### Database Layer (mcp-remote)
- Runs compilation checks
- Runs ESLint checks
- Runs custom autofixer visitors
- Requires `code`, `desired_svelte_version` (4 or 5), and optional `filename`
- Returns issues, suggestions, and whether another tool call is needed
#### playground-link
Generates a Svelte Playground link from code snippets:
- Accepts multiple files (must include `App.svelte` as entry point)
- Optional Tailwind CSS support
- Compresses and encodes files into URL hash
### MCP Prompts (`packages/mcp-server/src/mcp/handlers/prompts/`)
#### svelte-task
A prompt template that instructs LLMs on how to:
- Query available documentation sections
- Use the autofixer iteratively until no issues remain
- Generate playground links when appropriate
- Follows best practices for Svelte development
Prompts are defined with:
- `generate_for_docs()` - Function to generate prompt text for documentation
- `docs_description` - Human-readable description
- Prompt handler - Server registration logic with schema and completions
### MCP Resources (`packages/mcp-server/src/mcp/handlers/resources/`)
#### Svelte-Doc-Section
URI template: `svelte://{/slug*}.md`
Lists and fetches individual documentation sections:
- Lists all sections with metadata (title, use_cases, URI)
- Provides completions for slug parameter
- Fetches content from svelte.dev/docs/
### Code Analysis & Parsing (`packages/mcp-server/src/parse/`)
- **Parser** (`parse.ts`): Uses `svelte-eslint-parser` and TypeScript parser
- **Scope Analysis**: Tracks variables, references, and scopes across the AST
- **Rune Detection**: Identifies Svelte 5 runes (`$state`, `$effect`, `$derived`, etc.)
### Autofixer System (`packages/mcp-server/src/mcp/autofixers/`)
The autofixer system uses a visitor pattern to analyze Svelte components:
#### Core Autofixer Files
- **`add-compile-issues.ts`** - Runs Svelte compiler and adds compilation errors
- **`add-eslint-issues.ts`** - Runs ESLint with svelte-eslint-parser
- **`add-autofixers-issues.ts`** - Orchestrates all custom autofixer visitors
#### AST Walking (`ast/`)
- **`walk.ts`** - Enhanced AST walking with visitor mixing capabilities using zimmerframe
- **`utils.ts`** - Utility functions for AST manipulation
#### Autofixer Visitors (`visitors/`)
Each visitor checks for specific issues:
- **`assign-in-effect.ts`** - Detects assignments to `$state` variables inside `$effect` blocks
- **`derived-with-function.ts`** - Suggests using `$derived.by()` when passing a function to `$derived()`
- **`imported-runes.ts`** - Detects attempts to import runes (they're globals)
- **`read-state-with-dollar.ts`** - Detects reading `$state` variables with `$` prefix in Svelte 5
- **`suggest-attachments.ts`** - Suggests attachments API for bind:this and actions
- **`use-runes-instead-of-store.ts`** - Suggests migrating from stores to runes in Svelte 5
- **`wrong-property-access-state.ts`** - Detects incorrect property access patterns on `$state` variables
### Database Layer (`packages/mcp-schema/`)
- **ORM**: Drizzle with LibSQL/Turso backend
- **Schema** (`src/schema.js`):
- `content` - Original documentation with embeddings
- `content_distilled` - Distilled/condensed documentation with embeddings
- `distillations` - Stored distilled documentation versions
- `distillation_jobs` - Batch processing job tracking
- **Utils** (`src/utils.js`): Custom `float_32_array` type for vector embeddings
### SvelteKit Web App (`apps/mcp-remote/`)
Remote HTTP MCP server with documentation comparison interface:
- **Hooks** (`src/hooks.server.ts`): Integrates MCP HTTP transport with SvelteKit requests
- **Routes**:
- `/` - Landing page
- `/compare/use_cases` - Compare use case summaries with original docs
- `/compare/distilled` - Compare distilled docs with original docs
- **MCP Setup** (`src/lib/mcp/index.ts`): HTTP transport configuration
### CLI Package (`packages/mcp-stdio/`)
Standalone npm package (`@sveltejs/mcp`) that:
- Runs the MCP server via stdio transport
- Built with tsdown for optimal bundling
- Externalizes `eslint` dependency (required at runtime)
- Published to npm registry and MCP registry
- **ORM**: Drizzle with SQLite backend (`test.db`)
- **Schema**: Located in `src/lib/server/db/schema.ts` with vector table for embeddings
- **Configuration**: `drizzle.config.ts` in mcp-remote app
## Key Dependencies
@@ -237,87 +115,27 @@ Standalone npm package (`@sveltejs/mcp`) that:
- **@tmcp/transport-http** & **@tmcp/transport-stdio**: Transport layers
- **@tmcp/adapter-valibot**: Schema validation adapter
- **svelte-eslint-parser**: Svelte component parsing
- **typescript-eslint**: TypeScript AST parsing
- **zimmerframe**: AST walking utilities
- **drizzle-orm**: Database ORM with LibSQL
- **drizzle-orm**: Database ORM with SQLite
- **valibot**: Schema validation library
- **@anthropic-ai/sdk**: Anthropic Batch API for documentation processing
- **tsdown**: TypeScript bundler for CLI package
## Environment Configuration
### apps/mcp-remote/.env
For the mcp-remote app (`apps/mcp-remote/.env`):
Required for the remote MCP server:
- `DATABASE_URL`: SQLite database path (default: `file:test.db`)
- `VOYAGE_API_KEY`: API key for embeddings support (optional)
- `DATABASE_URL`: LibSQL/Turso database URL (e.g., `libsql://db-name.turso.io`)
- `DATABASE_TOKEN`: Turso authentication token
- `VOYAGE_API_KEY`: API key for embeddings support (optional, for vector search features)
When connected to the svelte-llm MCP server, you have access to comprehensive Svelte 5 and SvelteKit documentation. Here's how to use the available tools effectively:
### packages/mcp-server/.env
## Available MCP Tools:
Required for documentation generation scripts:
### 1. list_sections
- `ANTHROPIC_API_KEY`: API key for generating and verifying distilled documentation
Use this FIRST to discover all available documentation sections. Returns a structured list with titles and paths.
When asked about Svelte or SvelteKit topics, ALWAYS use this tool at the start of the chat to find relevant sections.
## Using the MCP Server
### 2. get_documentation
### Available MCP Tools
1. **list-sections** - ALWAYS call this FIRST to discover available documentation
- Returns structured list with titles, paths, and use_cases metadata
- Use the use_cases field to determine relevant sections
2. **get-documentation** - Retrieves documentation content
- Accepts single section name or array of section names
- Searches by title or file path
- Optional `use_distilled` parameter (default: true) for condensed versions
- After calling list-sections, fetch ALL relevant sections at once
3. **svelte-autofixer** - Analyzes Svelte code
- MUST be used whenever writing Svelte code before returning to user
- Keep calling until no issues/suggestions remain
- Provides compilation errors, ESLint issues, and custom suggestions
4. **playground-link** - Generates Svelte Playground URLs
- Only use after code is finalized and user confirms
- Requires App.svelte as entry point
- Can include multiple files
### Available MCP Prompts
- **svelte-task** - Use for any Svelte-related task
- Instructs LLM on proper tool usage
- Enforces iterative autofixer workflow
- Guides documentation querying
## Constants & Configuration
### Svelte Runes (`packages/mcp-server/src/constants.ts`)
Base runes:
- `$state`, `$effect`, `$derived`, `$inspect`, `$props`, `$bindable`, `$host`
Nested runes:
- `$state.raw`, `$state.snapshot`, `$effect.pre`, `$effect.tracking`, `$effect.pending`, `$effect.root`, `$derived.by`, `$inspect.trace`, `$props.id`
## Code Style & Standards
- **Naming**: Use `snake_case` for variables and functions
- **Types**: Prefer TypeScript type imports with JSDoc where needed
- **Formatting**: Tabs for indentation, single quotes, trailing commas
- **File Extensions**: Include `.js` extension in imports even for TypeScript files
- **Linting**: Run `pnpm lint:fix` before committing
## Testing
- Unit tests use Vitest
- Test files use `.test.ts` or `.spec.ts` suffix
- Run `pnpm test` to execute all tests
- Run `pnpm test:watch` for watch mode
- Test coverage includes:
- Documentation generation and verification
- Autofixer visitors
- Parsing and AST analysis
Retrieves full documentation content for specific sections. Accepts single or multiple sections.
After calling the list_sections tool, you MUST analyze the returned documentation sections and then use the get_documentation tool to fetch ALL documentation sections that are relevant for the users task.

View File

@@ -1,12 +1,14 @@
import { defineConfig } from 'drizzle-kit';
if (!process.env.DATABASE_URL) throw new Error('DATABASE_URL is not set');
if (!process.env.DATABASE_TOKEN) throw new Error('DATABASE_TOKEN is not set');
export default defineConfig({
schema: './src/lib/server/db/schema.ts',
dialect: 'turso',
dbCredentials: { url: process.env.DATABASE_URL, authToken: process.env.DATABASE_TOKEN },
dbCredentials: {
url: process.env.DATABASE_URL,
authToken: process.env.DATABASE_TOKEN || '',
},
verbose: true,
strict: true,
});

View File

@@ -39,15 +39,16 @@
"devDependencies": {
"@eslint/compat": "^1.3.2",
"@eslint/js": "^9.36.0",
"@libsql/client": "^0.15.0",
"@modelcontextprotocol/inspector": "^0.17.0",
"@libsql/client": "^0.14.0",
"@modelcontextprotocol/inspector": "^0.16.7",
"@sveltejs/adapter-node": "^5.3.2",
"@sveltejs/adapter-vercel": "^5.6.3",
"@sveltejs/kit": "^2.22.0",
"@sveltejs/vite-plugin-svelte": "^6.0.0",
"@types/node": "^24.3.1",
"@typescript-eslint/parser": "^8.44.0",
"drizzle-kit": "^0.31.0",
"drizzle-orm": "^0.44.0",
"drizzle-kit": "^0.30.2",
"drizzle-orm": "^0.40.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-svelte": "^3.12.3",
"globals": "^16.0.0",
@@ -64,7 +65,9 @@
"dependencies": {
"@sveltejs/mcp-schema": "workspace:^",
"@sveltejs/mcp-server": "workspace:^",
"@tmcp/transport-http": "^0.6.3",
"tmcp": "^1.14.0"
"@tmcp/transport-http": "^0.6.2",
"@types/tar-stream": "^3.1.4",
"minimatch": "^10.0.3",
"tar-stream": "^3.1.7"
}
}

View File

@@ -1,22 +1,7 @@
import { http_transport } from '$lib/mcp/index.js';
import { db } from '$lib/server/db/index.js';
import { redirect } from '@sveltejs/kit';
export async function handle({ event, resolve }) {
if (event.request.method === 'GET') {
const accept = event.request.headers.get('accept');
if (accept) {
const accepts = accept.split(',');
if (
!accepts.includes('text/event-stream') &&
(event.url.pathname.startsWith('/mcp') || event.url.pathname === '/')
) {
// the request it's a browser request, not an MCP client request
// it means someone probably opened it from the docs...we should redirect to the docs
redirect(302, 'https://svelte.dev/docs/mcp/overview');
}
}
}
const mcp_response = await http_transport.respond(event.request, {
db,
});

View File

@@ -0,0 +1,138 @@
import { db } from '$lib/server/db';
import { cache } from '$lib/server/db/schema';
import { and, eq, sql } from 'drizzle-orm';
export interface CacheEntry {
id: number;
cache_key: string;
data: Buffer;
size_bytes: number;
expires_at: Date;
created_at: Date;
}
export class CacheDbService {
private defaultTTL: number;
constructor(defaultTTLMinutes: number = 60) {
this.defaultTTL = defaultTTLMinutes;
}
async get(key: string): Promise<Buffer | null> {
try {
const result = await db
.select({ data: cache.data })
.from(cache)
.where(and(eq(cache.cache_key, key), sql`${cache.expires_at} > ${new Date()}`))
.limit(1);
if (result.length === 0) {
return null;
}
return result[0].data;
} catch (error) {
console.error('Error getting cache entry:', error);
return null;
}
}
async set(key: string, data: Buffer, ttlMinutes?: number): Promise<void> {
const ttl = ttlMinutes || this.defaultTTL;
const expires_at = new Date(Date.now() + ttl * 60 * 1000);
const now = new Date();
try {
await db
.insert(cache)
.values({
cache_key: key,
data,
size_bytes: data.length,
expires_at,
created_at: now,
updated_at: now,
})
.onConflictDoUpdate({
target: cache.cache_key,
set: {
data,
size_bytes: data.length,
expires_at,
updated_at: now,
},
});
} catch (error) {
console.error('Error setting cache entry:', error);
throw error;
}
}
async delete(key: string): Promise<boolean> {
try {
const result = await db.delete(cache).where(eq(cache.cache_key, key));
return result.rowsAffected > 0;
} catch (error) {
console.error('Error deleting cache entry:', error);
return false;
}
}
async clear(): Promise<void> {
try {
await db.delete(cache);
} catch (error) {
console.error('Error clearing cache:', error);
throw error;
}
}
async deleteExpired(): Promise<number> {
try {
const result = await db.delete(cache).where(sql`${cache.expires_at} <= ${new Date()}`);
return result.rowsAffected;
} catch (error) {
console.error('Error deleting expired cache entries:', error);
return 0;
}
}
async getStatus(): Promise<{ count: number; keys: string[]; totalSizeBytes: number }> {
try {
const result = await db
.select({
cache_key: cache.cache_key,
size_bytes: cache.size_bytes,
})
.from(cache)
.where(sql`${cache.expires_at} > ${new Date()}`)
.orderBy(cache.created_at);
const keys = result.map((row) => row.cache_key);
const totalSizeBytes = result.reduce((sum, row) => sum + row.size_bytes, 0);
return {
count: result.length,
keys,
totalSizeBytes,
};
} catch (error) {
console.error('Error getting cache status:', error);
return { count: 0, keys: [], totalSizeBytes: 0 };
}
}
async has(key: string): Promise<boolean> {
try {
const result = await db
.select({ exists: sql`1` })
.from(cache)
.where(and(eq(cache.cache_key, key), sql`${cache.expires_at} > ${new Date()}`))
.limit(1);
return result.length > 0;
} catch (error) {
console.error('Error checking cache entry:', error);
return false;
}
}
}

View File

@@ -0,0 +1,346 @@
import type { PresetConfig } from '$lib/presets';
import { env } from '$env/dynamic/private';
import tarStream from 'tar-stream';
import { Readable } from 'stream';
import { createGunzip } from 'zlib';
import { minimatch } from 'minimatch';
import { getPresetContent } from './presetCache';
import { CacheDbService } from '$lib/cacheDb';
import { log, logAlways, logErrorAlways } from '$lib/log';
import { cleanTarballPath } from '$lib/utils/pathUtils';
let cacheService: CacheDbService | null = null;
function getCacheService(): CacheDbService {
if (!cacheService) {
cacheService = new CacheDbService();
}
return cacheService;
}
function sortFilesWithinGroup(files: string[]): string[] {
return files.sort((a, b) => {
const aPath = a.split('\n')[0].replace('## ', '');
const bPath = b.split('\n')[0].replace('## ', '');
// Check if one path is a parent of the other
if (bPath.startsWith(aPath.replace('/index.md', '/'))) return -1;
if (aPath.startsWith(bPath.replace('/index.md', '/'))) return 1;
return aPath.localeCompare(bPath);
});
}
export async function fetchRepositoryTarball(owner: string, repo: string): Promise<Buffer> {
const cacheKey = `${owner}/${repo}`;
const cache = getCacheService();
const cachedBuffer = await cache.get(cacheKey);
if (cachedBuffer) {
logAlways(`Using cached tarball for ${cacheKey} from database`);
return cachedBuffer;
}
const url = `https://api.github.com/repos/${owner}/${repo}/tarball`;
logAlways(`Fetching tarball from: ${url}`);
const response = await fetch(url, {
headers: {
Authorization: `Bearer ${env.GITHUB_TOKEN}`,
Accept: 'application/vnd.github.v3.raw',
},
});
if (!response.ok) {
throw new Error(`Failed to fetch tarball: ${response.statusText}`);
}
if (!response.body) {
throw new Error('Response body is null');
}
const chunks: Uint8Array[] = [];
const reader = response.body.getReader();
while (true) {
const { done, value } = await reader.read();
if (done) break;
chunks.push(value);
}
const buffer = Buffer.concat(chunks);
// Cache the buffer in database with 60 minutes TTL
await cache.set(cacheKey, buffer, 60);
return buffer;
}
export async function processMarkdownFromTarball(
tarballBuffer: Buffer,
presetConfig: PresetConfig,
includePathInfo: boolean,
): Promise<string[] | { path: string; content: string }[]> {
const { glob, ignore = [], minimize = undefined } = presetConfig;
// Create a Map to store files for each glob pattern while maintaining order
const globResults = new Map<string, unknown[]>();
const filePathsByPattern = new Map<string, string[]>();
glob.forEach((pattern) => {
globResults.set(pattern, []);
filePathsByPattern.set(pattern, []);
});
const extractStream = tarStream.extract();
let processedFiles = 0;
let matchedFiles = 0;
extractStream.on('entry', (header, stream, next) => {
processedFiles++;
let matched = false;
for (const pattern of glob) {
if (shouldIncludeFile(header.name, pattern, ignore)) {
matched = true;
matchedFiles++;
if (header.type === 'file') {
let content = '';
stream.on('data', (chunk) => (content += chunk.toString()));
stream.on('end', () => {
// Use the unified path utility to clean tarball paths
const cleanPath = cleanTarballPath(header.name);
const processedContent = minimizeContent(content, minimize);
if (includePathInfo) {
const files = globResults.get(pattern) || [];
files.push({
path: cleanPath,
content: processedContent,
});
globResults.set(pattern, files);
} else {
const contentWithHeader = `## ${cleanPath}\n\n${processedContent}`;
const files = globResults.get(pattern) || [];
files.push(contentWithHeader);
globResults.set(pattern, files);
}
const paths = filePathsByPattern.get(pattern) || [];
paths.push(cleanPath);
filePathsByPattern.set(pattern, paths);
next();
});
return;
}
}
}
if (!matched) {
stream.resume();
next();
}
});
const tarballStream = Readable.from(tarballBuffer);
const gunzipStream = createGunzip();
tarballStream.pipe(gunzipStream).pipe(extractStream);
await new Promise<void>((resolve) => extractStream.on('finish', resolve));
logAlways(`Total files processed: ${processedFiles}`);
logAlways(`Files matching glob: ${matchedFiles}`);
log('\nFinal file order:');
glob.forEach((pattern, index) => {
const paths = filePathsByPattern.get(pattern) || [];
const sortedPaths = includePathInfo
? paths
: sortFilesWithinGroup(paths.map((p) => `## ${p}`)).map((p) => p.replace('## ', ''));
if (sortedPaths.length > 0) {
log(`\nGlob pattern ${index + 1}: ${pattern}`);
sortedPaths.forEach((path, i) => {
log(` ${i + 1}. ${path}`);
});
}
});
// Combine results in the order of glob patterns
const orderedResults: unknown[] = [];
for (const pattern of glob) {
const filesForPattern = globResults.get(pattern) || [];
if (includePathInfo) {
orderedResults.push(...filesForPattern);
} else {
orderedResults.push(...sortFilesWithinGroup(filesForPattern as string[]));
}
}
return orderedResults as string[] | { path: string; content: string }[];
}
function shouldIncludeFile(filename: string, glob: string, ignore: string[] = []): boolean {
const shouldIgnore = ignore.some((pattern) => minimatch(filename, pattern));
if (shouldIgnore) {
logAlways(`❌ Ignored by pattern: ${filename}`);
return false;
}
return minimatch(filename, glob);
}
export async function clearRepositoryCache(): Promise<void> {
const cache = getCacheService();
await cache.clear();
logAlways('Repository cache cleared');
}
export async function getRepositoryCacheStatus(): Promise<{
size: number;
repositories: string[];
totalSizeBytes: number;
}> {
const cache = getCacheService();
const status = await cache.getStatus();
return {
size: status.count,
repositories: status.keys,
totalSizeBytes: status.totalSizeBytes,
};
}
export interface MinimizeOptions {
normalizeWhitespace?: boolean;
removeLegacy?: boolean;
removePlaygroundLinks?: boolean;
removePrettierIgnore?: boolean;
removeNoteBlocks?: boolean;
removeDetailsBlocks?: boolean;
removeHtmlComments?: boolean;
removeDiffMarkers?: boolean;
}
const defaultOptions: MinimizeOptions = {
normalizeWhitespace: false,
removeLegacy: false,
removePlaygroundLinks: false,
removePrettierIgnore: true,
removeNoteBlocks: true,
removeDetailsBlocks: true,
removeHtmlComments: false,
removeDiffMarkers: true,
};
function removeQuoteBlocks(content: string, blockType: string): string {
return content
.split('\n')
.reduce((acc: string[], line: string, index: number, lines: string[]) => {
// If we find a block (with or without additional text), skip it and all subsequent blockquote lines
if (line.trim().startsWith(`> [!${blockType}]`)) {
// Skip all subsequent lines that are part of the blockquote
let i = index;
while (i < lines.length && (lines[i].startsWith('>') || lines[i].trim() === '')) {
i++;
}
// Update the index to skip all these lines
index = i - 1;
return acc;
}
acc.push(line);
return acc;
}, [])
.join('\n');
}
function removeDiffMarkersFromContent(content: string): string {
let inCodeBlock = false;
const lines = content.split('\n');
const processedLines = lines.map((line) => {
// Track if we're entering or leaving a code block
// eslint-disable-next-line no-useless-escape
if (line.trim().startsWith('\`\`\`')) {
inCodeBlock = !inCodeBlock;
return line;
}
if (inCodeBlock) {
// Handle lines that end with --- or +++ with possible whitespace after
// eslint-disable-next-line no-useless-escape
line = line.replace(/(\+{3}|\-{3})[\s]*$/g, '');
// Handle triple markers at start while preserving indentation
// This captures the whitespace before the marker and adds it back
// eslint-disable-next-line no-useless-escape
line = line.replace(/^(\s*)(\+{3}|\-{3})\s*/g, '$1');
// Handle single + or - markers at start while preserving indentation
// eslint-disable-next-line no-useless-escape
line = line.replace(/^(\s*)[\+\-](\s)/g, '$1');
// Handle multi-line diff blocks where --- or +++ might be in the middle of line
// eslint-disable-next-line no-useless-escape
line = line.replace(/[\s]*(\+{3}|\-{3})[\s]*/g, '');
}
return line;
});
return processedLines.join('\n');
}
export function minimizeContent(content: string, options?: Partial<MinimizeOptions>): string {
const settings: MinimizeOptions = options ? { ...defaultOptions, ...options } : defaultOptions;
let minimized = content;
minimized = minimized.replace(/NOTE: do not edit this file, it is generated in.*$/gm, '');
if (settings.removeDiffMarkers) {
minimized = removeDiffMarkersFromContent(minimized);
}
if (settings.removeLegacy) {
minimized = removeQuoteBlocks(minimized, 'LEGACY');
}
if (settings.removeNoteBlocks) {
minimized = removeQuoteBlocks(minimized, 'NOTE');
}
if (settings.removeDetailsBlocks) {
minimized = removeQuoteBlocks(minimized, 'DETAILS');
}
if (settings.removePlaygroundLinks) {
// Replace playground URLs with /[link] but keep the original link text
minimized = minimized.replace(/\[([^\]]+)\]\(\/playground[^)]+\)/g, '[$1](/REMOVED)');
}
if (settings.removePrettierIgnore) {
minimized = minimized
.split('\n')
.filter((line) => line.trim() !== '<!-- prettier-ignore -->')
.join('\n');
}
if (settings.removeHtmlComments) {
// Replace all HTML comments (including multi-line) with empty string
minimized = minimized.replace(/<!--[\s\S]*?-->/g, '');
}
if (settings.normalizeWhitespace) {
minimized = minimized.replace(/\s+/g, ' ');
}
minimized = minimized.trim();
return minimized;
}

View File

@@ -0,0 +1,32 @@
import { dev } from '$app/environment';
// eslint-disable-next-line @typescript-eslint/naming-convention, func-style
export const log = (...props: unknown[]) => {
if (dev) {
console.log(...props);
}
};
// eslint-disable-next-line @typescript-eslint/naming-convention, func-style
export const logWarning = (...props: unknown[]) => {
if (dev) {
console.warn(...props);
}
};
// eslint-disable-next-line @typescript-eslint/naming-convention, func-style
export const logError = (...props: unknown[]) => {
if (dev) {
console.error(...props);
}
};
// eslint-disable-next-line @typescript-eslint/naming-convention, func-style
export const logAlways = (...props: unknown[]) => {
console.log(...props);
};
// eslint-disable-next-line @typescript-eslint/naming-convention, func-style
export const logWarningAlways = (...props: unknown[]) => {
console.warn(...props);
};
// eslint-disable-next-line @typescript-eslint/naming-convention, func-style
export const logErrorAlways = (...props: unknown[]) => {
console.error(...props);
};

View File

@@ -0,0 +1,213 @@
import { ContentSyncService } from '$lib/server/contentSync';
import { presets } from '$lib/presets';
import { log, logAlways, logErrorAlways } from '$lib/log';
import { cleanDocumentationPath } from '$lib/utils/pathUtils';
import { CacheDbService } from '$lib/cacheDb';
// Maximum age of cached content in milliseconds (24 hours)
export const MAX_CACHE_AGE_MS = 24 * 60 * 60 * 1000;
let cacheService: CacheDbService | null = null;
function getCacheService(): CacheDbService {
if (!cacheService) {
cacheService = new CacheDbService();
}
return cacheService;
}
export async function getPresetContent(presetKey: string): Promise<string | null> {
try {
const preset = presets[presetKey];
if (!preset) {
log(`Preset not found: ${presetKey}`);
return null;
}
// Check cache first
const cache = getCacheService();
const cacheKey = `preset:${presetKey}`;
try {
const cachedData = await cache.get(cacheKey);
if (cachedData) {
const cachedContent = cachedData.toString('utf8');
logAlways(`Using cached content for preset ${presetKey}`);
return cachedContent;
}
} catch (cacheError) {
logErrorAlways(`Error reading cache for preset ${presetKey}:`, cacheError);
// Continue with normal flow if cache read fails
}
// Try to get files from the content table first
let filesWithPaths = await ContentSyncService.getPresetContentFromDb(presetKey);
// If no content in database, fetch from GitHub and sync
if (!filesWithPaths || filesWithPaths.length === 0) {
logAlways(`No content in database for preset ${presetKey}, fetching from GitHub...`);
// Sync the repository first
await ContentSyncService.syncRepository();
// Try again from database
filesWithPaths = await ContentSyncService.getPresetContentFromDb(presetKey);
if (!filesWithPaths || filesWithPaths.length === 0) {
log(`Still no content found for preset: ${presetKey} after sync`);
return null;
}
}
// Format files with headers and preserve the order from database
// The files are already correctly ordered by glob pattern precedence
// Use the unified path utility to clean paths
const files = filesWithPaths.map((f) => {
const cleanPath = cleanDocumentationPath(f.path);
return `## ${cleanPath}\n\n${f.content}`;
});
// DO NOT sort - files are already in correct glob pattern order from ContentSyncService
const content = files.join('\n\n');
logAlways(`Generated content for ${presetKey} on-demand (${filesWithPaths.length} files)`);
// Cache the generated content for 1 hour (60 minutes)
try {
const contentBuffer = Buffer.from(content, 'utf8');
await cache.set(cacheKey, contentBuffer, 60); // 60 minutes TTL
logAlways(`Cached content for preset ${presetKey} (expires in 1 hour)`);
} catch (cacheError) {
logErrorAlways(`Error caching content for preset ${presetKey}:`, cacheError);
// Don't fail the request if caching fails
}
return content;
} catch (error) {
logErrorAlways(`Error generating preset content for ${presetKey}:`, error);
return null;
}
}
export async function getPresetSizeKb(presetKey: string): Promise<number | null> {
try {
const content = await getPresetContent(presetKey);
if (!content) {
return null;
}
const sizeKb = Math.floor(new TextEncoder().encode(content).length / 1024);
return sizeKb;
} catch (error) {
logErrorAlways(`Error calculating preset size for ${presetKey}:`, error);
return null;
}
}
export async function isPresetStale(presetKey: string): Promise<boolean> {
try {
// Check if the repository content is stale
return await ContentSyncService.isRepositoryContentStale();
} catch (error) {
logErrorAlways(`Error checking preset staleness for ${presetKey}:`, error);
return true; // On error, assume stale
}
}
export async function presetExists(presetKey: string): Promise<boolean> {
try {
const preset = presets[presetKey];
if (!preset) {
return false;
}
// A preset "exists" if it's defined in presets.ts
// The content will be generated on-demand
return true;
} catch (error) {
logErrorAlways(`Error checking preset existence for ${presetKey}:`, error);
return false;
}
}
export async function getPresetMetadata(presetKey: string): Promise<{
size_kb: number;
document_count: number;
updated_at: Date;
is_stale: boolean;
} | null> {
try {
const preset = presets[presetKey];
if (!preset) {
return null;
}
// Try to get files from content table or GitHub
const content = await getPresetContent(presetKey);
if (!content) {
return null;
}
// Get the files again to count them (this will use cached data)
const filesWithPaths = await ContentSyncService.getPresetContentFromDb(presetKey);
const documentCount = filesWithPaths?.length || 0;
const sizeKb = Math.floor(new TextEncoder().encode(content).length / 1024);
const isStale = await isPresetStale(presetKey);
return {
size_kb: sizeKb,
document_count: documentCount,
updated_at: new Date(), // Since it's generated on-demand, it's always "now"
is_stale: isStale,
};
} catch (error) {
logErrorAlways(`Error getting preset metadata for ${presetKey}:`, error);
return null;
}
}
/**
* Clear the cache for a specific preset
*/
export async function clearPresetCache(presetKey: string): Promise<boolean> {
try {
const cache = getCacheService();
const cacheKey = `preset:${presetKey}`;
const success = await cache.delete(cacheKey);
if (success) {
logAlways(`Cleared cache for preset ${presetKey}`);
}
return success;
} catch (error) {
logErrorAlways(`Error clearing cache for preset ${presetKey}:`, error);
return false;
}
}
/**
* Clear cache for all presets
*/
export async function clearAllPresetCaches(): Promise<number> {
try {
const cache = getCacheService();
const allPresetKeys = Object.keys(presets);
let clearedCount = 0;
for (const presetKey of allPresetKeys) {
const cacheKey = `preset:${presetKey}`;
const success = await cache.delete(cacheKey);
if (success) {
clearedCount++;
}
}
logAlways(`Cleared cache for ${clearedCount} presets`);
return clearedCount;
} catch (error) {
logErrorAlways(`Error clearing all preset caches:`, error);
return 0;
}
}

View File

@@ -0,0 +1,267 @@
import type { MinimizeOptions } from './fetchMarkdown';
import { SVELTE_5_PROMPT } from '$lib/utils/prompts';
export type PresetConfig = {
title: string;
description?: string;
glob: string[];
ignore?: string[];
prompt?: string;
minimize?: MinimizeOptions;
distilled?: boolean;
distilledFilenameBase?: string;
};
// eslint-disable-next-line @typescript-eslint/naming-convention
export const combinedPresets: Record<string, PresetConfig> = {
'svelte-complete-distilled': {
title: '🔮 Svelte + SvelteKit (Recommended - LLM Distilled)',
description: 'AI-condensed version of the docs focused on code examples and key concepts',
glob: [
// Svelte
'**/apps/svelte.dev/content/docs/svelte/**/*.md',
// SvelteKit
'**/apps/svelte.dev/content/docs/kit/**/*.md',
],
minimize: {
normalizeWhitespace: false,
removeLegacy: true,
removePlaygroundLinks: true,
removePrettierIgnore: true,
removeNoteBlocks: false,
removeDetailsBlocks: false,
removeHtmlComments: true,
removeDiffMarkers: true,
},
ignore: [
// Svelte ignores (same as medium preset)
'**/apps/svelte.dev/content/docs/svelte/07-misc/04-custom-elements.md',
'**/apps/svelte.dev/content/docs/svelte/07-misc/06-v4-migration-guide.md',
'**/apps/svelte.dev/content/docs/svelte/07-misc/07-v5-migration-guide.md',
'**/apps/svelte.dev/content/docs/svelte/07-misc/99-faq.md',
'**/apps/svelte.dev/content/docs/svelte/07-misc/xx-reactivity-indepth.md',
'**/apps/svelte.dev/content/docs/svelte/98-reference/21-svelte-legacy.md',
'**/apps/svelte.dev/content/docs/svelte/99-legacy/**/*.md',
'**/apps/svelte.dev/content/docs/svelte/98-reference/**/*.md',
'**/xx-*.md',
// SvelteKit ignores (same as medium preset)
'**/apps/svelte.dev/content/docs/kit/25-build-and-deploy/*adapter-*.md',
'**/apps/svelte.dev/content/docs/kit/25-build-and-deploy/99-writing-adapters.md',
'**/apps/svelte.dev/content/docs/kit/30-advanced/70-packaging.md',
'**/apps/svelte.dev/content/docs/kit/40-best-practices/05-performance.md',
'**/apps/svelte.dev/content/docs/kit/40-best-practices/10-accessibility.md',
'**/apps/svelte.dev/content/docs/kit/60-appendix/**/*.md',
'**/apps/svelte.dev/content/docs/kit/98-reference/**/*.md',
'**/xx-*.md',
],
prompt: SVELTE_5_PROMPT,
distilled: true,
distilledFilenameBase: 'svelte-complete-distilled',
},
'svelte-complete-medium': {
title: '⭐️ Svelte + SvelteKit (Medium preset)',
description:
'Complete Svelte + SvelteKit docs excluding certain advanced sections, legacy, notes and migration docs',
glob: [
// Svelte
'**/apps/svelte.dev/content/docs/svelte/**/*.md',
// SvelteKit
'**/apps/svelte.dev/content/docs/kit/**/*.md',
],
ignore: [
// Svelte ignores
'**/apps/svelte.dev/content/docs/svelte/07-misc/04-custom-elements.md',
'**/apps/svelte.dev/content/docs/svelte/07-misc/06-v4-migration-guide.md',
'**/apps/svelte.dev/content/docs/svelte/07-misc/07-v5-migration-guide.md',
'**/apps/svelte.dev/content/docs/svelte/07-misc/99-faq.md',
'**/apps/svelte.dev/content/docs/svelte/07-misc/xx-reactivity-indepth.md',
'**/apps/svelte.dev/content/docs/svelte/98-reference/21-svelte-legacy.md',
'**/apps/svelte.dev/content/docs/svelte/99-legacy/**/*.md',
'**/apps/svelte.dev/content/docs/svelte/98-reference/30-runtime-errors.md',
'**/apps/svelte.dev/content/docs/svelte/98-reference/30-runtime-warnings.md',
'**/apps/svelte.dev/content/docs/svelte/98-reference/30-compiler-errors.md',
'**/apps/svelte.dev/content/docs/svelte/98-reference/30-compiler-warnings.md',
'**/xx-*.md',
// SvelteKit ignores
'**/apps/svelte.dev/content/docs/kit/25-build-and-deploy/*adapter-*.md',
'**/apps/svelte.dev/content/docs/kit/25-build-and-deploy/99-writing-adapters.md',
'**/apps/svelte.dev/content/docs/kit/30-advanced/70-packaging.md',
'**/apps/svelte.dev/content/docs/kit/40-best-practices/05-performance.md',
'**/apps/svelte.dev/content/docs/kit/40-best-practices/10-accessibility.md', // May the a11y gods have mercy on our souls
'**/apps/svelte.dev/content/docs/kit/60-appendix/**/*.md',
'**/xx-*.md',
],
prompt: SVELTE_5_PROMPT,
minimize: {
removeLegacy: true,
removePlaygroundLinks: true,
removeNoteBlocks: true,
removeDetailsBlocks: true,
removeHtmlComments: true,
normalizeWhitespace: true,
},
},
'svelte-complete': {
title: 'Svelte + SvelteKit (Large preset)',
description: 'Complete Svelte + SvelteKit docs excluding legacy, notes and migration docs',
glob: [
'**/apps/svelte.dev/content/docs/svelte/**/*.md',
'**/apps/svelte.dev/content/docs/kit/**/*.md',
],
ignore: [],
prompt: SVELTE_5_PROMPT,
minimize: {
removeLegacy: true,
removePlaygroundLinks: true,
removeNoteBlocks: true,
removeDetailsBlocks: true,
removeHtmlComments: true,
normalizeWhitespace: true,
},
},
'svelte-complete-tiny': {
title: 'Svelte + SvelteKit (Tiny preset)',
description: 'Tutorial content only',
glob: [
'**/apps/svelte.dev/content/tutorial/**/*.md',
'**/apps/svelte.dev/content/docs/svelte/02-runes/**/*.md',
],
ignore: [],
prompt: SVELTE_5_PROMPT,
minimize: {
removeLegacy: true,
removePlaygroundLinks: true,
removeNoteBlocks: true,
removeDetailsBlocks: true,
removeHtmlComments: true,
normalizeWhitespace: true,
},
},
'svelte-migration': {
title: 'Svelte + SvelteKit migration guide',
description: 'Only Svelte + SvelteKit docs for migrating ',
glob: [
// Svelte
'**/apps/svelte.dev/content/docs/svelte/07-misc/07-v5-migration-guide.md',
// SvelteKit
'**/apps/svelte.dev/content/docs/kit/60-appendix/30-migrating-to-sveltekit-2.md',
],
ignore: [],
prompt: SVELTE_5_PROMPT,
minimize: {
removeLegacy: true,
removePlaygroundLinks: true,
removeNoteBlocks: true,
removeDetailsBlocks: true,
removeHtmlComments: true,
normalizeWhitespace: true,
},
},
};
// eslint-disable-next-line @typescript-eslint/naming-convention
export const sveltePresets: Record<string, PresetConfig> = {
svelte: {
title: 'Svelte (Full)',
description: 'Complete documentation including legacy and reference',
glob: ['**/apps/svelte.dev/content/docs/svelte/**/*.md'],
ignore: [],
prompt: SVELTE_5_PROMPT,
minimize: {},
},
'svelte-medium': {
title: 'Svelte (Medium)',
description: 'Complete documentation including legacy and reference',
glob: ['**/apps/svelte.dev/content/docs/svelte/**/*.md'],
ignore: [
// Svelte ignores
'**/apps/svelte.dev/content/docs/svelte/07-misc/04-custom-elements.md',
'**/apps/svelte.dev/content/docs/svelte/07-misc/06-v4-migration-guide.md',
'**/apps/svelte.dev/content/docs/svelte/07-misc/07-v5-migration-guide.md',
'**/apps/svelte.dev/content/docs/svelte/07-misc/99-faq.md',
'**/apps/svelte.dev/content/docs/svelte/07-misc/xx-reactivity-indepth.md',
'**/apps/svelte.dev/content/docs/svelte/98-reference/21-svelte-legacy.md',
'**/apps/svelte.dev/content/docs/svelte/99-legacy/**/*.md',
'**/apps/svelte.dev/content/docs/svelte/98-reference/30-runtime-errors.md',
'**/apps/svelte.dev/content/docs/svelte/98-reference/30-runtime-warnings.md',
'**/apps/svelte.dev/content/docs/svelte/98-reference/30-compiler-errors.md',
'**/apps/svelte.dev/content/docs/svelte/98-reference/30-compiler-warnings.md',
],
prompt: SVELTE_5_PROMPT,
minimize: {
removeLegacy: true,
removePlaygroundLinks: true,
removeNoteBlocks: true,
removeDetailsBlocks: true,
removeHtmlComments: true,
normalizeWhitespace: true,
},
},
};
// eslint-disable-next-line @typescript-eslint/naming-convention
export const svelteKitPresets: Record<string, PresetConfig> = {
sveltekit: {
title: 'SvelteKit (Full)',
description: 'Complete documentation including legacy and reference',
prompt: SVELTE_5_PROMPT,
glob: ['**/apps/svelte.dev/content/docs/kit/**/*.md'],
minimize: {},
},
'sveltekit-medium': {
title: 'SvelteKit (Medium)',
description: 'Complete documentation including legacy and reference',
prompt: SVELTE_5_PROMPT,
glob: ['**/apps/svelte.dev/content/docs/kit/**/*.md'],
minimize: {
removeLegacy: true,
removePlaygroundLinks: true,
removeNoteBlocks: true,
removeDetailsBlocks: true,
removeHtmlComments: true,
normalizeWhitespace: true,
},
ignore: [
// SvelteKit ignores
'**/apps/svelte.dev/content/docs/kit/25-build-and-deploy/*adapter-*.md',
'**/apps/svelte.dev/content/docs/kit/25-build-and-deploy/99-writing-adapters.md',
'**/apps/svelte.dev/content/docs/kit/30-advanced/70-packaging.md',
'**/apps/svelte.dev/content/docs/kit/40-best-practices/05-performance.md',
'**/apps/svelte.dev/content/docs/kit/40-best-practices/10-accessibility.md', // May the a11y gods have mercy on our souls
'**/apps/svelte.dev/content/docs/kit/60-appendix/**/*.md',
'**/xx-*.md',
],
},
};
// eslint-disable-next-line @typescript-eslint/naming-convention
export const otherPresets: Record<string, PresetConfig> = {
'svelte-cli': {
title: 'Svelte CLI - npx sv',
glob: ['**/apps/svelte.dev/content/docs/cli/**/*.md'],
ignore: [],
minimize: {},
},
};
export const presets = {
...combinedPresets,
...sveltePresets,
...svelteKitPresets,
...otherPresets,
};
// eslint-disable-next-line @typescript-eslint/naming-convention
export function transformAndSortPresets(presetsObject: Record<string, PresetConfig>) {
return Object.entries(presetsObject)
.map(([key, value]) => ({
key: key.toLowerCase(),
...value,
}))
.sort();
}
export const DEFAULT_REPOSITORY = {
owner: 'sveltejs',
repo: 'svelte.dev',
} as const;

View File

@@ -0,0 +1,383 @@
import { query } from '$lib/server/db';
import type {
DbContent,
DbContentDistilled,
CreateContentInput,
ContentFilter,
ContentStats,
} from '$lib/types/db';
import { logAlways, logErrorAlways } from '$lib/log';
// Type mapping for table names to their corresponding types
type TableTypeMap = {
content: DbContent;
content_distilled: DbContentDistilled;
};
// Union type for valid table names
type TableName = keyof TableTypeMap;
export class ContentDbService {
static extractFilename(path: string): string {
return path.split('/').pop() || path;
}
static async upsertContent(input: CreateContentInput): Promise<DbContent> {
try {
const result = await query(
`INSERT INTO content (
path, filename, content, size_bytes, metadata
) VALUES ($1, $2, $3, $4, $5)
ON CONFLICT (path) DO UPDATE SET
content = EXCLUDED.content,
size_bytes = EXCLUDED.size_bytes,
metadata = EXCLUDED.metadata,
updated_at = CURRENT_TIMESTAMP
RETURNING *`,
[
input.path,
input.filename,
input.content,
input.size_bytes,
input.metadata ? JSON.stringify(input.metadata) : '{}',
],
);
logAlways(`Upserted content for ${input.path}`);
return result.rows[0] as DbContent;
} catch (error) {
logErrorAlways(`Failed to upsert content for ${input.path}:`, error);
throw new Error(
`Failed to upsert content: ${error instanceof Error ? error.message : String(error)}`,
);
}
}
static async getContentByPath(path: string): Promise<DbContent | null> {
try {
const result = await query('SELECT * FROM content WHERE path = $1', [path]);
return result.rows.length > 0 ? (result.rows[0] as DbContent) : null;
} catch (error) {
logErrorAlways(`Failed to get content ${path}:`, error);
throw new Error(
`Failed to get content: ${error instanceof Error ? error.message : String(error)}`,
);
}
}
static async getAllContent(): Promise<DbContent[]> {
try {
const result = await query('SELECT * FROM content ORDER BY path');
return result.rows as DbContent[];
} catch (error) {
logErrorAlways('Failed to get all content:', error);
throw new Error(
`Failed to get content: ${error instanceof Error ? error.message : String(error)}`,
);
}
}
/**
* Generic search method that works with both content and content_distilled tables
*/
static async searchContent<T extends TableName>(
searchQuery: string,
tableName: T,
pathPattern: string = 'apps/svelte.dev/content/docs/%',
): Promise<TableTypeMap[T] | null> {
try {
const lowerQuery = searchQuery.toLowerCase();
// Build table-specific WHERE clauses
let baseWhereClause = '';
let params: (string | number)[] = [];
let paramIndex = 1;
if (tableName === 'content') {
// For content table, include path filter
baseWhereClause = `WHERE path LIKE $${paramIndex}`;
params = [pathPattern];
paramIndex = 2;
} else {
// For content_distilled table, no additional filters needed
baseWhereClause = '';
paramIndex = 1;
}
// First, try exact title match using JSON operators
const exactTitleQueryStr = `
SELECT * FROM ${tableName}
${baseWhereClause}${baseWhereClause ? ' AND' : 'WHERE'} LOWER(metadata->>'title') = $${paramIndex}
LIMIT 1
`;
const exactTitleParams = [...params, lowerQuery];
const exactTitleResult = await query(exactTitleQueryStr, exactTitleParams);
if (exactTitleResult.rows.length > 0) {
return exactTitleResult.rows[0] as TableTypeMap[T];
}
// Then try partial title match
const partialTitleQueryStr = `
SELECT * FROM ${tableName}
${baseWhereClause}${baseWhereClause ? ' AND' : 'WHERE'} LOWER(metadata->>'title') LIKE $${paramIndex}
LIMIT 1
`;
const partialTitleParams = [...params, `%${lowerQuery}%`];
const partialTitleResult = await query(partialTitleQueryStr, partialTitleParams);
if (partialTitleResult.rows.length > 0) {
return partialTitleResult.rows[0] as TableTypeMap[T];
}
// Finally try path match for backward compatibility
const pathMatchQueryStr = `
SELECT * FROM ${tableName}
${baseWhereClause}${baseWhereClause ? ' AND' : 'WHERE'} LOWER(path) LIKE $${paramIndex}
LIMIT 1
`;
const pathMatchParams = [...params, `%${lowerQuery}%`];
const pathMatchResult = await query(pathMatchQueryStr, pathMatchParams);
return pathMatchResult.rows.length > 0 ? (pathMatchResult.rows[0] as TableTypeMap[T]) : null;
} catch (error) {
logErrorAlways(`Failed to search ${tableName} for "${searchQuery}":`, error);
throw new Error(
`Failed to search ${tableName}: ${error instanceof Error ? error.message : String(error)}`,
);
}
}
static async searchAllContent(
searchQuery: string,
pathPattern: string = 'apps/svelte.dev/content/docs/%',
limit: number = 50,
): Promise<DbContent[]> {
try {
const lowerQuery = searchQuery.toLowerCase();
// Combine all search types into one query with UNION
const combinedQueryStr = `
-- Exact title matches first
(SELECT * FROM content
WHERE path LIKE $1
AND LOWER(metadata->>'title') = $2
ORDER BY path
LIMIT $3)
UNION
-- Then partial title matches
(SELECT * FROM content
WHERE path LIKE $1
AND LOWER(metadata->>'title') LIKE $4
AND LOWER(metadata->>'title') != $2
ORDER BY path
LIMIT $3)
UNION
-- Finally path matches
(SELECT * FROM content
WHERE path LIKE $1
AND LOWER(path) LIKE $4
AND (metadata->>'title' IS NULL OR LOWER(metadata->>'title') NOT LIKE $4)
ORDER BY path
LIMIT $3)
ORDER BY path
LIMIT $3
`;
const params = [pathPattern, lowerQuery, limit, `%${lowerQuery}%`];
const result = await query(combinedQueryStr, params);
return result.rows as DbContent[];
} catch (error) {
logErrorAlways(`Failed to search all content for "${searchQuery}":`, error);
throw new Error(
`Failed to search content: ${error instanceof Error ? error.message : String(error)}`,
);
}
}
static async getDocumentationSections(
pathPattern: string = 'apps/svelte.dev/content/docs/%',
minContentLength: number = 100,
): Promise<Array<{ path: string; metadata: Record<string, unknown>; content: string }>> {
try {
const sectionsQueryStr = `
SELECT path, metadata, content
FROM content
WHERE path LIKE $1
AND LENGTH(content) >= $2
ORDER BY path
`;
const params = [pathPattern, minContentLength];
const result = await query(sectionsQueryStr, params);
return result.rows.map((row) => ({
path: row.path,
metadata: row.metadata,
content: row.content,
}));
} catch (error) {
logErrorAlways('Failed to get documentation sections:', error);
throw new Error(
`Failed to get sections: ${error instanceof Error ? error.message : String(error)}`,
);
}
}
static async getFilteredContent(
pathPattern: string = 'apps/svelte.dev/content/docs/%',
minContentLength: number = 200,
): Promise<DbContent[]> {
try {
const filterQueryStr = `
SELECT *
FROM content
WHERE path LIKE $1
AND LENGTH(content) >= $2
ORDER BY path
`;
const params = [pathPattern, minContentLength];
const result = await query(filterQueryStr, params);
return result.rows as DbContent[];
} catch (error) {
logErrorAlways('Failed to get filtered content:', error);
throw new Error(
`Failed to get filtered content: ${error instanceof Error ? error.message : String(error)}`,
);
}
}
static async getContentStats(): Promise<ContentStats> {
try {
const totalResult = await query(
`SELECT
COUNT(*) as total_files,
COALESCE(SUM(size_bytes), 0) as total_size_bytes,
MAX(updated_at) as last_updated
FROM content`,
);
return {
total_files: parseInt(totalResult.rows[0].total_files),
total_size_bytes: parseInt(totalResult.rows[0].total_size_bytes),
last_updated: totalResult.rows[0].last_updated,
};
} catch (error) {
logErrorAlways('Failed to get content stats:', error);
throw new Error(
`Failed to get stats: ${error instanceof Error ? error.message : String(error)}`,
);
}
}
static async deleteContent(path: string): Promise<boolean> {
try {
const result = await query('DELETE FROM content WHERE path = $1', [path]);
return (result.rowCount ?? 0) > 0;
} catch (error) {
logErrorAlways(`Failed to delete content ${path}:`, error);
throw new Error(
`Failed to delete content: ${error instanceof Error ? error.message : String(error)}`,
);
}
}
static async deleteAllContent(): Promise<number> {
try {
const result = await query('DELETE FROM content');
return result.rowCount ?? 0;
} catch (error) {
logErrorAlways('Failed to delete all content:', error);
throw new Error(
`Failed to delete content: ${error instanceof Error ? error.message : String(error)}`,
);
}
}
static async hasContentChanged(path: string, newContent: string): Promise<boolean> {
try {
const existing = await ContentDbService.getContentByPath(path);
if (!existing) return true;
return existing.content !== newContent;
} catch (error) {
logErrorAlways(`Failed to check content change for ${path}:`, error);
return true; // Assume changed on error
}
}
static async batchUpsertContent(contents: CreateContentInput[]): Promise<DbContent[]> {
try {
const results: DbContent[] = [];
// Process in chunks to avoid overwhelming the database
const chunkSize = 200;
for (let i = 0; i < contents.length; i += chunkSize) {
const chunk = contents.slice(i, i + chunkSize);
const chunkResults = await Promise.all(
chunk.map((content) => ContentDbService.upsertContent(content)),
);
results.push(...chunkResults);
}
logAlways(`Batch upserted ${results.length} content items`);
return results;
} catch (error) {
logErrorAlways('Failed to batch upsert content:', error);
throw new Error(
`Failed to batch upsert: ${error instanceof Error ? error.message : String(error)}`,
);
}
}
static extractFrontmatter(content: string): Record<string, unknown> {
const metadata: Record<string, unknown> = {};
if (!content.startsWith('---\n')) {
return metadata;
}
const endIndex = content.indexOf('\n---\n', 4);
if (endIndex === -1) {
return metadata;
}
const frontmatter = content.substring(4, endIndex);
const lines = frontmatter.split('\n');
for (const line of lines) {
const colonIndex = line.indexOf(':');
if (colonIndex > 0) {
const key = line.substring(0, colonIndex).trim();
const value = line.substring(colonIndex + 1).trim();
// Remove quotes if present
const cleanValue = value.replace(/^["'](.*)["']$/, '$1');
// Try to parse as JSON for nested structures
try {
metadata[key] = JSON.parse(cleanValue);
} catch {
metadata[key] = cleanValue;
}
}
}
return metadata;
}
}

View File

@@ -0,0 +1,271 @@
import {
fetchRepositoryTarball,
processMarkdownFromTarball,
minimizeContent,
} from '$lib/fetchMarkdown';
import { ContentDbService } from '$lib/server/contentDb';
import type { CreateContentInput } from '$lib/types/db';
import { presets, DEFAULT_REPOSITORY } from '$lib/presets';
import { logAlways, logErrorAlways, log } from '$lib/log';
function sortFilesWithinGroup(
files: Array<{ path: string; content: string }>,
): Array<{ path: string; content: string }> {
return files.sort((a, b) => {
const aPath = a.path;
const bPath = b.path;
// Check if one path is a parent of the other
if (bPath.startsWith(aPath.replace('/index.md', '/'))) return -1;
if (aPath.startsWith(bPath.replace('/index.md', '/'))) return 1;
return aPath.localeCompare(bPath);
});
}
export class ContentSyncService {
static readonly MAX_CONTENT_AGE_MS = 24 * 60 * 60 * 1000;
static async syncRepository(
options: {
returnStats?: boolean;
} = {},
): Promise<{
success: boolean;
stats: {
total_files: number;
total_size_bytes: number;
last_updated: Date;
};
sync_details: {
upserted_files: number;
deleted_files: number;
unchanged_files: number;
};
timestamp: string;
}> {
const { returnStats = true } = options;
const { owner, repo: repoName } = DEFAULT_REPOSITORY;
logAlways(`Starting sync for repository: ${owner}/${repoName}`);
let upsertedFiles = 0;
let deletedFiles = 0;
let unchangedFiles = 0;
try {
logAlways(`Step 1: Syncing repository ${owner}/${repoName}`);
const tarballBuffer = await fetchRepositoryTarball(owner, repoName);
const filesWithPaths = (await processMarkdownFromTarball(
tarballBuffer,
{
glob: ['**/*.md', '**/*.mdx'],
ignore: [],
title: `Sync ${owner}/${repoName}`,
distilled: false,
},
true,
)) as Array<{
path: string;
content: string;
}>;
logAlways(`Found ${filesWithPaths.length} markdown files in ${owner}/${repoName}`);
const existingFiles = await ContentDbService.getAllContent();
const existingPaths = new Set(existingFiles.map((file) => file.path));
const foundPaths = new Set(filesWithPaths.map((file) => file.path));
const contentInputs: CreateContentInput[] = [];
for (const file of filesWithPaths) {
const filename = ContentDbService.extractFilename(file.path);
const sizeBytes = new TextEncoder().encode(file.content).length;
const metadata = ContentDbService.extractFrontmatter(file.content);
const hasChanged = await ContentDbService.hasContentChanged(file.path, file.content);
if (hasChanged) {
contentInputs.push({
path: file.path,
filename,
content: file.content,
size_bytes: sizeBytes,
metadata,
});
} else {
unchangedFiles++;
}
}
if (contentInputs.length > 0) {
logAlways(`Upserting ${contentInputs.length} changed files`);
await ContentDbService.batchUpsertContent(contentInputs);
upsertedFiles = contentInputs.length;
} else {
logAlways(`No file content changes detected`);
}
// Handle deletions - find files in DB that are no longer in the repository
const deletedPaths = Array.from(existingPaths).filter((path) => !foundPaths.has(path));
if (deletedPaths.length > 0) {
logAlways(`Deleting ${deletedPaths.length} files that no longer exist`);
for (const deletedPath of deletedPaths) {
logAlways(` Deleting: ${deletedPath}`);
await ContentDbService.deleteContent(deletedPath);
}
deletedFiles = deletedPaths.length;
} else {
logAlways(`No deleted files detected`);
}
let stats;
if (returnStats) {
logAlways(`Step 2: Collecting final statistics`);
stats = await ContentSyncService.getContentStats();
} else {
logAlways(`Step 2: Skipping stats collection (returnStats = false)`);
// Return minimal stats structure
stats = {
total_files: 0,
total_size_bytes: 0,
last_updated: new Date(),
};
}
logAlways(
`Sync completed successfully: ${upsertedFiles} upserted, ${deletedFiles} deleted, ${unchangedFiles} unchanged`,
);
return {
success: true,
stats,
sync_details: {
upserted_files: upsertedFiles,
deleted_files: deletedFiles,
unchanged_files: unchangedFiles,
},
timestamp: new Date().toISOString(),
};
} catch (error) {
logErrorAlways(`Failed to sync repository ${owner}/${repoName}:`, error);
throw error;
}
}
static async isRepositoryContentStale(): Promise<boolean> {
try {
const stats = await ContentDbService.getContentStats();
if (stats.total_files === 0) {
return true; // No content, consider stale
}
const lastUpdated = new Date(stats.last_updated);
const contentAge = Date.now() - lastUpdated.getTime();
const isStale = contentAge > ContentSyncService.MAX_CONTENT_AGE_MS;
if (isStale) {
logAlways(
`Repository content is stale (age: ${Math.floor(contentAge / 1000 / 60)} minutes)`,
);
}
return isStale;
} catch (error) {
logErrorAlways(`Error checking repository staleness:`, error);
return true; // On error, assume stale
}
}
static async getPresetContentFromDb(
presetKey: string,
): Promise<Array<{ path: string; content: string }> | null> {
const preset = presets[presetKey];
if (!preset) {
return null;
}
try {
const allContent = await ContentDbService.getAllContent();
if (allContent.length === 0) {
return null;
}
log(`Checking ${allContent.length} files against glob patterns for preset ${presetKey}`);
log(`Glob patterns: ${JSON.stringify(preset.glob)}`);
log(`Ignore patterns: ${JSON.stringify(preset.ignore || [])}`);
const { minimatch } = await import('minimatch');
const orderedResults: Array<{ path: string; content: string }> = [];
// Process one glob pattern at a time
for (const pattern of preset.glob) {
log(`\nProcessing glob pattern: ${pattern}`);
const matchingFiles: Array<{ path: string; content: string }> = [];
for (const dbContent of allContent) {
const shouldIgnore = preset.ignore?.some((ignorePattern) => {
const matches = minimatch(dbContent.path, ignorePattern);
if (matches) {
log(` File ${dbContent.path} ignored by pattern: ${ignorePattern}`);
}
return matches;
});
if (shouldIgnore) continue;
if (minimatch(dbContent.path, pattern)) {
log(` File ${dbContent.path} matched`);
let processedContent = dbContent.content;
if (preset.minimize && Object.keys(preset.minimize).length > 0) {
processedContent = minimizeContent(dbContent.content, preset.minimize);
}
matchingFiles.push({
path: dbContent.path,
content: processedContent,
});
}
}
const sortedFiles = sortFilesWithinGroup(matchingFiles);
log(` Found ${sortedFiles.length} files for pattern: ${pattern}`);
sortedFiles.forEach((file, i) => {
log(` ${i + 1}. ${file.path}`);
});
orderedResults.push(...sortedFiles);
}
logAlways(
`Found ${orderedResults.length} files matching preset ${presetKey} from database in natural glob order`,
);
log('\nFinal file order:');
orderedResults.forEach((file, i) => {
log(` ${i + 1}. ${file.path}`);
});
return orderedResults;
} catch (error) {
logErrorAlways(`Failed to get preset content from database for ${presetKey}:`, error);
return null;
}
}
static async getContentStats() {
return ContentDbService.getContentStats();
}
}

View File

@@ -0,0 +1,112 @@
export interface QueryConfig {
debug?: boolean;
}
// Enum for distillable preset names
export enum DistillablePreset {
SVELTE_DISTILLED = 'svelte-distilled',
SVELTEKIT_DISTILLED = 'sveltekit-distilled',
SVELTE_COMPLETE_DISTILLED = 'svelte-complete-distilled',
}
// Database table types
export interface DbDistillation {
id: number;
preset_name: DistillablePreset;
version: string; // 'latest' or '2024-01-15'
content: string;
size_kb: number;
document_count: number;
distillation_job_id: number | null;
created_at: Date;
}
export interface DbDistillationJob {
id: number;
preset_name: string;
batch_id: string | null;
status: 'pending' | 'processing' | 'completed' | 'failed';
model_used: string;
total_files: number;
processed_files: number;
successful_files: number;
minimize_applied: boolean;
total_input_tokens: number;
total_output_tokens: number;
started_at: Date | null;
completed_at: Date | null;
error_message: string | null;
metadata: Record<string, unknown>; // JSONB
created_at: Date;
updated_at: Date;
}
export interface DbContent {
id: number;
path: string;
filename: string;
content: string;
size_bytes: number;
metadata: Record<string, unknown>;
created_at: Date;
updated_at: Date;
}
export interface DbContentDistilled {
id: number;
path: string;
filename: string;
content: string;
size_bytes: number;
metadata: Record<string, unknown>;
created_at: Date;
updated_at: Date;
}
// Input types for creating/updating records
export interface CreateDistillationInput {
preset_name: DistillablePreset;
version: string;
content: string;
size_kb: number;
document_count: number;
distillation_job_id?: number;
}
export interface CreateDistillationJobInput {
preset_name: string;
batch_id?: string;
status: 'pending' | 'processing' | 'completed' | 'failed';
model_used: string;
total_files: number;
minimize_applied?: boolean;
metadata?: Record<string, unknown>;
}
export interface CreateContentInput {
path: string;
filename: string;
content: string;
size_bytes: number;
metadata?: Record<string, unknown>;
}
export interface CreateContentDistilledInput {
path: string;
filename: string;
content: string;
size_bytes: number;
metadata?: Record<string, unknown>;
}
export interface ContentFilter {
path_pattern?: string; // For glob pattern matching
}
export interface ContentStats {
total_files: number;
total_size_bytes: number;
last_updated: Date;
}

View File

@@ -0,0 +1,335 @@
import { describe, it, expect } from 'vitest';
import {
cleanDocumentationPath,
cleanTarballPath,
extractTitleFromPath,
removeFrontmatter,
} from './pathUtils.js';
describe('pathUtils', () => {
describe('cleanDocumentationPath', () => {
it('should remove apps/svelte.dev/content/ prefix', () => {
const input = 'apps/svelte.dev/content/docs/svelte/01-introduction.md';
const expected = 'docs/svelte/01-introduction.md';
expect(cleanDocumentationPath(input)).toBe(expected);
});
it('should handle paths without the prefix', () => {
const input = 'docs/svelte/01-introduction.md';
const expected = 'docs/svelte/01-introduction.md';
expect(cleanDocumentationPath(input)).toBe(expected);
});
it('should handle empty string', () => {
const input = '';
const expected = '';
expect(cleanDocumentationPath(input)).toBe(expected);
});
it('should handle partial prefix matches', () => {
const input = 'apps/svelte.dev/content-extra/docs/svelte/01-introduction.md';
const expected = 'apps/svelte.dev/content-extra/docs/svelte/01-introduction.md';
expect(cleanDocumentationPath(input)).toBe(expected);
});
it('should handle paths with similar but different prefixes', () => {
const input = 'apps/svelte.dev/contents/docs/svelte/01-introduction.md';
const expected = 'apps/svelte.dev/contents/docs/svelte/01-introduction.md';
expect(cleanDocumentationPath(input)).toBe(expected);
});
it('should handle SvelteKit documentation paths', () => {
const input = 'apps/svelte.dev/content/docs/kit/01-routing.md';
const expected = 'docs/kit/01-routing.md';
expect(cleanDocumentationPath(input)).toBe(expected);
});
it('should handle tutorial paths', () => {
const input = 'apps/svelte.dev/content/tutorial/01-introduction/01-hello-world.md';
const expected = 'tutorial/01-introduction/01-hello-world.md';
expect(cleanDocumentationPath(input)).toBe(expected);
});
});
describe('cleanTarballPath', () => {
it('should remove the first segment from tarball paths', () => {
const input = 'svelte.dev-main/apps/svelte.dev/content/docs/svelte/01-introduction.md';
const expected = 'apps/svelte.dev/content/docs/svelte/01-introduction.md';
expect(cleanTarballPath(input)).toBe(expected);
});
it('should handle paths with different repo prefixes', () => {
const input = 'svelte-12345/apps/svelte.dev/content/docs/kit/01-routing.md';
const expected = 'apps/svelte.dev/content/docs/kit/01-routing.md';
expect(cleanTarballPath(input)).toBe(expected);
});
it('should handle single segment paths', () => {
const input = 'single-segment';
const expected = '';
expect(cleanTarballPath(input)).toBe(expected);
});
it('should handle empty string', () => {
const input = '';
const expected = '';
expect(cleanTarballPath(input)).toBe(expected);
});
it('should handle paths with no segments', () => {
const input = 'just-filename.md';
const expected = '';
expect(cleanTarballPath(input)).toBe(expected);
});
it('should handle complex nested paths', () => {
const input = 'repo-name/very/deep/nested/path/to/file.md';
const expected = 'very/deep/nested/path/to/file.md';
expect(cleanTarballPath(input)).toBe(expected);
});
});
describe('extractTitleFromPath', () => {
it('should extract filename and remove .md extension and numbered prefix', () => {
const input = 'docs/svelte/01-introduction.md';
const expected = 'introduction';
expect(extractTitleFromPath(input)).toBe(expected);
});
it('should remove numbered prefixes', () => {
const input = 'docs/svelte/01-introduction.md';
const expected = 'introduction';
expect(extractTitleFromPath(input)).toBe(expected);
});
it('should handle files without numbered prefixes', () => {
const input = 'docs/svelte/reactivity.md';
const expected = 'reactivity';
expect(extractTitleFromPath(input)).toBe(expected);
});
it('should handle files without .md extension', () => {
const input = 'docs/svelte/01-introduction';
const expected = 'introduction';
expect(extractTitleFromPath(input)).toBe(expected);
});
it('should handle complex numbered prefixes', () => {
const input = 'docs/svelte/99-advanced-topics.md';
const expected = 'advanced-topics';
expect(extractTitleFromPath(input)).toBe(expected);
});
it('should handle files with multiple numbered prefixes', () => {
const input = 'docs/svelte/01-02-nested-numbering.md';
const expected = '02-nested-numbering';
expect(extractTitleFromPath(input)).toBe(expected);
});
it('should handle just a filename', () => {
const input = '01-introduction.md';
const expected = 'introduction';
expect(extractTitleFromPath(input)).toBe(expected);
});
it('should handle empty string', () => {
const input = '';
const expected = '';
expect(extractTitleFromPath(input)).toBe(expected);
});
it('should handle paths with no filename', () => {
const input = 'docs/svelte/';
const expected = '';
expect(extractTitleFromPath(input)).toBe(expected);
});
it('should handle files with hyphens but no numbers', () => {
const input = 'docs/svelte/state-management.md';
const expected = 'state-management';
expect(extractTitleFromPath(input)).toBe(expected);
});
it('should handle files with numbers in the middle', () => {
const input = 'docs/svelte/svelte5-features.md';
const expected = 'svelte5-features';
expect(extractTitleFromPath(input)).toBe(expected);
});
it('should handle tutorial paths', () => {
const input = 'tutorial/01-introduction/01-hello-world.md';
const expected = 'hello-world';
expect(extractTitleFromPath(input)).toBe(expected);
});
it('should handle SvelteKit paths', () => {
const input = 'docs/kit/01-routing.md';
const expected = 'routing';
expect(extractTitleFromPath(input)).toBe(expected);
});
});
describe('removeFrontmatter', () => {
it('should remove valid frontmatter from content', () => {
const input = `---
title: Introduction
description: Getting started guide
---
# Introduction
This is the main content.`;
const expected = `# Introduction
This is the main content.`;
expect(removeFrontmatter(input)).toBe(expected);
});
it('should handle content without frontmatter', () => {
const input = `# Introduction
This is content without frontmatter.`;
const expected = `# Introduction
This is content without frontmatter.`;
expect(removeFrontmatter(input)).toBe(expected);
});
it('should handle empty content', () => {
const input = '';
const expected = '';
expect(removeFrontmatter(input)).toBe(expected);
});
it('should handle malformed frontmatter (no closing delimiter)', () => {
const input = `---
title: Introduction
This is malformed frontmatter without closing delimiter
# Content here`;
const expected = input; // Should return original content unchanged
expect(removeFrontmatter(input)).toBe(expected);
});
it('should handle frontmatter with complex YAML', () => {
const input = `---
title: Complex Example
tags:
- svelte
- tutorial
metadata:
author: John Doe
date: 2024-01-15
---
# Complex Example
Content with complex frontmatter.`;
const expected = `# Complex Example
Content with complex frontmatter.`;
expect(removeFrontmatter(input)).toBe(expected);
});
it('should handle content that starts with --- but is not frontmatter', () => {
const input = `---
This is not YAML frontmatter, just content that starts with ---`;
const expected = input; // Should return original content unchanged
expect(removeFrontmatter(input)).toBe(expected);
});
it('should handle frontmatter with empty lines', () => {
const input = `---
title: Introduction
description: A guide
---
# Content`;
const expected = `# Content`;
expect(removeFrontmatter(input)).toBe(expected);
});
it('should trim whitespace after removing frontmatter', () => {
const input = `---
title: Introduction
---
# Content with leading whitespace`;
const expected = `# Content with leading whitespace`;
expect(removeFrontmatter(input)).toBe(expected);
});
it('should handle frontmatter at the end of content', () => {
const input = `---
title: Only Frontmatter
---`;
const expected = ``;
expect(removeFrontmatter(input)).toBe(expected);
});
});
describe('integration tests', () => {
it('should work together for typical documentation workflow', () => {
// Simulate a typical path from tarball to display
const tarball_path = 'svelte.dev-main/apps/svelte.dev/content/docs/svelte/01-introduction.md';
// Clean tarball path
const cleaned_from_tarball = cleanTarballPath(tarball_path);
expect(cleaned_from_tarball).toBe('apps/svelte.dev/content/docs/svelte/01-introduction.md');
// This would be stored in DB and later cleaned for display
const cleaned_for_display = cleanDocumentationPath(cleaned_from_tarball);
expect(cleaned_for_display).toBe('docs/svelte/01-introduction.md');
// Extract title for metadata
const title = extractTitleFromPath(cleaned_from_tarball);
expect(title).toBe('introduction');
});
it('should handle SvelteKit paths through full workflow', () => {
const tarball_path = 'svelte.dev-main/apps/svelte.dev/content/docs/kit/01-routing.md';
const cleaned_from_tarball = cleanTarballPath(tarball_path);
expect(cleaned_from_tarball).toBe('apps/svelte.dev/content/docs/kit/01-routing.md');
const cleaned_for_display = cleanDocumentationPath(cleaned_from_tarball);
expect(cleaned_for_display).toBe('docs/kit/01-routing.md');
const title = extractTitleFromPath(cleaned_from_tarball);
expect(title).toBe('routing');
});
it('should handle tutorial paths through full workflow', () => {
const tarball_path =
'svelte.dev-main/apps/svelte.dev/content/tutorial/01-introduction/01-hello-world.md';
const cleaned_from_tarball = cleanTarballPath(tarball_path);
expect(cleaned_from_tarball).toBe(
'apps/svelte.dev/content/tutorial/01-introduction/01-hello-world.md',
);
const cleaned_for_display = cleanDocumentationPath(cleaned_from_tarball);
expect(cleaned_for_display).toBe('tutorial/01-introduction/01-hello-world.md');
const title = extractTitleFromPath(cleaned_from_tarball);
expect(title).toBe('hello-world');
});
it('should handle content processing with frontmatter removal', () => {
const content = `---
title: Introduction
---
# Introduction
This is the content.`;
const content_without_frontmatter = removeFrontmatter(content);
expect(content_without_frontmatter).toBe(`# Introduction
This is the content.`);
});
});
});

View File

@@ -0,0 +1,110 @@
/**
* Unified path utilities for handling documentation paths
*/
/**
* Clean a path by removing the "apps/svelte.dev/content/" prefix
* This is used to convert database paths to display paths
*
* @param path - The path to clean
* @returns The cleaned path
*/
export function cleanDocumentationPath(path: string): string {
const prefix = 'apps/svelte.dev/content/';
if (path.startsWith(prefix)) {
return path.substring(prefix.length);
}
return path;
}
/**
* Clean a tarball path by removing the repository directory prefix (first segment)
* This is used when processing files from GitHub tarballs
*
* @param path - The path to clean
* @returns The cleaned path without the repo directory prefix
*/
export function cleanTarballPath(path: string): string {
// Remove only the repo directory prefix (first segment)
return path.split('/').slice(1).join('/');
}
/**
* Extract the title from a file path by removing prefixes and file extensions
*
* @param filePath - The file path to extract title from
* @returns The extracted title
*/
export function extractTitleFromPath(filePath: string): string {
if (!filePath) {
return '';
}
const pathParts = filePath.split('/');
const filename = pathParts[pathParts.length - 1];
// Handle empty filename (e.g., paths ending with '/')
if (!filename) {
return '';
}
// Remove .md extension and numbered prefixes
return filename.replace('.md', '').replace(/^\d+-/, '');
}
/**
* Remove frontmatter from markdown content using a tokenizer approach
* Frontmatter is YAML metadata at the beginning of files between --- delimiters
*
* @param content - The markdown content that may contain frontmatter
* @returns The content with frontmatter removed
*/
export function removeFrontmatter(content: string): string {
if (!content || content.length === 0) {
return content;
}
// Check if content starts with frontmatter delimiter
if (!content.startsWith('---\n')) {
return content;
}
let position = 4; // Start after the opening "---\n"
let insideFrontmatter = true;
let frontmatterEndOffset: number | null = null;
// Traverse the string character by character
while (position < content.length && insideFrontmatter) {
const char = content[position];
// Look for potential end of frontmatter: \n---
if (char === '\n' && position + 3 < content.length) {
const nextThree = content.substring(position + 1, position + 4);
if (nextThree === '---') {
// Check what comes after the closing ---
const afterClosing = position + 4;
if (afterClosing >= content.length) {
// End of string - this is valid frontmatter
frontmatterEndOffset = content.length;
insideFrontmatter = false;
} else if (content[afterClosing] === '\n') {
// Followed by newline - this is valid frontmatter
frontmatterEndOffset = afterClosing + 1;
insideFrontmatter = false;
}
// If followed by something else, it's not the end delimiter, continue searching
}
}
position++;
}
// If we never found the end of frontmatter, it's malformed
if (frontmatterEndOffset === null) {
return content;
}
// Return content after the frontmatter, trimmed
return content.substring(frontmatterEndOffset).trim();
}

View File

@@ -0,0 +1,165 @@
export const SVELTE_5_PROMPT =
'Always use Svelte 5 runes and Svelte 5 syntax. Runes do not need to be imported, they are globals. $state() runes are always declared using `let`, never with `const`. When passing a function to $derived, you must always use $derived.by(() => ...). Error boundaries can only catch errors during component rendering and at the top level of an $effect inside the error boundary. Error boundaries do not catch errors in onclick or other event handlers.';
export const DISTILLATION_PROMPT = `
You are an expert in web development, specifically Svelte 5 and SvelteKit. Your task is to condense and distill the Svelte documentation into a concise format while preserving the most important information.
Shorten the text information AS MUCH AS POSSIBLE while covering key concepts.
Focus on:
1. Code examples with short explanations of how they work
2. Key concepts and APIs with their usage patterns
3. Important gotchas and best practices
4. Patterns that developers commonly use
Remove:
1. Redundant explanations
2. Verbose content that can be simplified
3. Marketing language
4. Legacy or deprecated content
5. Anything else that is not strictly necessary
Keep your output in markdown format. Preserve code blocks with their language annotations.
Maintain headings but feel free to combine or restructure sections to improve clarity.
Make sure all code examples use Svelte 5 runes syntax ($state, $derived, $effect, etc.)
Keep the following Svelte 5 syntax rules in mind:
* There is no colon (:) in event modifiers. You MUST use "onclick" instead of "on:click".
* Runes do not need to be imported, they are globals.
* $state() runes are always declared using let, never with const.
* When passing a function to $derived, you must always use $derived.by(() => ...).
* Error boundaries can only catch errors during component rendering and at the top level of an $effect inside the error boundary.
* Error boundaries do not catch errors in onclick or other event handlers.
IMPORTANT: All code examples MUST come from the documentation verbatim, do NOT create new code examples. Do NOT modify existing code examples.
IMPORTANT: Because of changes in Svelte 5 syntax, do not include content from your existing knowledge, you may only use knowledge from the documentation to condense.
Here is the documentation you must condense:
`;
export const SVELTE_DEVELOPER_PROMPT = `You are an expert in web development, specifically Svelte 5 and SvelteKit, with expert-level knowledge of Svelte 5, SvelteKit, and TypeScript.
## Core Expertise:
### Svelte 5 Runes & Reactivity
- **$state**: Reactive state declaration (always use let, never const)
- **$derived**: Computed values (always use $derived.by(() => ...) for functions)
- **$effect**: Side effects and cleanup (runs after DOM updates)
- **$props**: Component props with destructuring and defaults
- **$bindable**: Two-way binding for props
### Critical Syntax Rules:
${SVELTE_5_PROMPT}
### Additional Rules:
- Props: let { count = 0, name } = $props()
- Bindable: let { value = $bindable() } = $props()
- Children: let { children } = $props()
- Cleanup: $effect(() => { return () => cleanup() })
- Context: setContext/getContext work with runes
- Snippets: {#snippet name(params)} for reusable templates
### SvelteKit Essentials:
- File-based routing with route groups and parameters
- Load functions: +page.ts (universal) vs +page.server.ts (server-only)
- Form actions in +page.server.ts with progressive enhancement
- Layout nesting and data inheritance
- Error and loading states with +error.svelte and loading UI
### TypeScript Integration:
- Always use TypeScript for type safety
- Properly type PageData, PageLoad, Actions, RequestHandler
- Generic components with proper type inference
- .svelte.ts for shared reactive state
## MCP Tool Usage Guide:
### Template Prompts (Efficient Documentation Injection):
Use these for instant access to curated documentation sets:
- **svelte-core**: Core Svelte 5 (introduction, runes, template syntax, styling)
- **svelte-advanced**: Advanced Svelte 5 (special elements, runtime, misc)
- **svelte-complete**: Complete Svelte 5 documentation
- **sveltekit-core**: Core SvelteKit (getting started, core concepts)
- **sveltekit-production**: Production SvelteKit (build/deploy, advanced, best practices)
- **sveltekit-complete**: Complete SvelteKit documentation
### Resources Access:
- **📦 Preset Resources**: Use svelte-llm://svelte-core, svelte-llm://svelte-advanced, svelte-llm://svelte-complete, svelte-llm://sveltekit-core, svelte-llm://sveltekit-production, svelte-llm://sveltekit-complete for curated documentation sets
- **📄 Individual Docs**: Use svelte-llm://doc/[path] for specific documentation files
- Access via list_resources or direct URI for browsing and reference
### When to use list_sections + get_documentation:
- **Specific Topics**: When you need particular sections not covered by presets
- **Custom Combinations**: When presets don't match the exact scope needed
- **Deep Dives**: When you need detailed information on specific APIs
- **Troubleshooting**: When investigating specific issues or edge cases
### Strategic Approach:
1. **Start with Template Prompts**: Use template prompts (svelte-core, sveltekit-core, etc.) for immediate context injection
2. **Browse via Resources**: Use preset resources for reading/reference during development
3. **Supplement with Specific Docs**: Use list_sections + get_documentation only when presets don't cover your needs
4. **Combine Efficiently**: Use multiple template prompts if you need both Svelte and SvelteKit context
### Documentation Fetching Priority:
1. **Template Prompts First**: Always try relevant template prompts before individual sections
2. **Preset Resources**: Use for browsing and reference
3. **Individual Sections**: Only when specific content not in presets is needed
4. **Multiple Sources**: Combine template prompts with specific sections as needed
## Best Practices:
- Write production-ready TypeScript code
- Include proper error handling and loading states
- Consider accessibility (ARIA, keyboard navigation)
- Optimize for performance (lazy loading, minimal reactivity)
- Use semantic HTML and proper component composition
- Implement proper cleanup in effects
- Handle edge cases and provide fallbacks`;
// eslint-disable-next-line @typescript-eslint/naming-convention, func-style
export const createSvelteDeveloperPromptWithTask = (task?: string): string => {
// eslint-disable-next-line @typescript-eslint/naming-convention
const basePrompt = SVELTE_DEVELOPER_PROMPT;
if (!task) {
return (
basePrompt +
`
## Your Approach:
When helping with Svelte/SvelteKit development:
1. **Use Template Prompts**: Start with relevant template prompts (svelte-core, sveltekit-core, etc.) for immediate context
2. **Supplement as Needed**: Use list_sections + get_documentation only for content not covered by templates
3. **Provide Complete Solutions**: Include working TypeScript code with proper types
4. **Explain Trade-offs**: Discuss architectural decisions and alternatives
5. **Optimize**: Suggest performance improvements and best practices`
);
}
return (
basePrompt +
`
## Current Task:
${task}
## Task-Specific Approach:
1. **Inject Relevant Context**: Use appropriate template prompts based on "${task.substring(0, 50)}...":
- Component tasks: Use svelte-core for runes, template syntax
- Advanced features: Use svelte-advanced for special elements, runtime
- Full applications: Use svelte-complete + sveltekit-core/complete
- Production apps: Use sveltekit-production for deployment, best practices
2. **Supplement with Specific Docs**: Use list_sections + get_documentation only if templates don't cover specific needs
3. **Design Architecture**:
- Component structure and composition
- State management approach
- TypeScript types and interfaces
- Error handling strategy
4. **Implement Solution**:
- Complete, working code
- Proper types and error boundaries
- Performance optimizations
- Accessibility considerations
5. **Explain Implementation**: Provide rationale for choices and discuss alternatives`
);
};

View File

@@ -0,0 +1 @@
<h1>Official Svelte MCP</h1>

View File

@@ -1,73 +0,0 @@
import { error } from '@sveltejs/kit';
import type { PageServerLoad } from './$types';
import distilled_data from '@sveltejs/mcp-server/distilled.json';
import use_cases_data from '@sveltejs/mcp-server/use-cases.json';
interface SummaryData {
generated_at: string;
model: string;
total_sections: number;
successful_summaries: number;
summaries: Record<string, string>;
content: Record<string, string>;
}
const VALID_TYPES = ['use_cases', 'distilled'] as const;
type ValidType = (typeof VALID_TYPES)[number];
function is_valid_type(type: string): type is ValidType {
return VALID_TYPES.includes(type as ValidType);
}
export const load: PageServerLoad = async ({ params }) => {
const { type } = params;
if (!is_valid_type(type)) {
throw error(404, 'Comparison type not found');
}
const data = (type === 'use_cases' ? use_cases_data : distilled_data) as SummaryData;
const sections = Object.keys(data.summaries).map((slug) => {
const summary = data.summaries[slug] || '';
const content = data.content[slug] || '';
const original_length = content.length;
const distilled_length = summary.length;
const space_savings =
original_length > 0 ? ((original_length - distilled_length) / original_length) * 100 : 0;
return {
slug,
summary,
content,
original_length,
distilled_length,
space_savings,
};
});
const total_original_length = sections.reduce((sum, s) => sum + s.original_length, 0);
const total_distilled_length = sections.reduce((sum, s) => sum + s.distilled_length, 0);
const total_space_savings =
total_original_length > 0
? ((total_original_length - total_distilled_length) / total_original_length) * 100
: 0;
const title =
type === 'use_cases' ? 'Use Cases Comparison' : 'Distilled Documentation Comparison';
return {
type,
title,
metadata: {
generated_at: data.generated_at,
model: data.model,
total_sections: data.total_sections,
successful_summaries: data.successful_summaries,
total_original_length,
total_distilled_length,
total_space_savings,
},
sections,
};
};

View File

@@ -1,427 +0,0 @@
<script lang="ts">
import type { PageData } from './$types';
let { data }: { data: PageData } = $props();
let selected_slug = $state<string | null>(null);
let search_query = $state('');
let sort_order = $state<'default' | 'largest' | 'smallest'>('default');
let filtered_sections = $derived.by(() => {
// First, filter sections
const filtered = data.sections.filter(
(section) =>
section.slug.toLowerCase().includes(search_query.toLowerCase()) ||
section.summary.toLowerCase().includes(search_query.toLowerCase()),
);
// Then, sort based on selected sort order
if (sort_order === 'largest') {
return [...filtered].sort((a, b) => b.space_savings - a.space_savings);
} else if (sort_order === 'smallest') {
return [...filtered].sort((a, b) => a.space_savings - b.space_savings);
}
return filtered;
});
let selected_section = $derived(
selected_slug ? data.sections.find((s) => s.slug === selected_slug) : null,
);
let summary_title = $derived(
data.type === 'use_cases' ? 'Use Cases Summary' : 'Distilled Version',
);
let is_distilled = $derived(data.type === 'distilled');
function select_section(slug: string) {
selected_slug = selected_slug === slug ? null : slug;
}
</script>
<svelte:head>
<title>{data.title}</title>
</svelte:head>
<div class="container">
<header>
<h1>{data.title}</h1>
<div class="metadata">
<span>Generated: {new Date(data.metadata.generated_at).toLocaleString()}</span>
<span>Model: {data.metadata.model}</span>
<span>Sections: {data.metadata.successful_summaries}/{data.metadata.total_sections}</span>
<span
>Space Savings: {data.metadata.total_distilled_length.toLocaleString()}/{data.metadata.total_original_length.toLocaleString()}
chars ({data.metadata.total_space_savings.toFixed(1)}% reduction)</span
>
</div>
</header>
<div class="main-content">
<aside class="sidebar">
<div class="sort-controls">
<span class="sort-label">Sort by:</span>
<div class="sort-buttons">
<button
class="sort-button"
class:active={sort_order === 'default'}
onclick={() => (sort_order = 'default')}
>
Default
</button>
<button
class="sort-button"
class:active={sort_order === 'largest'}
onclick={() => (sort_order = 'largest')}
>
Largest Reduction
</button>
<button
class="sort-button"
class:active={sort_order === 'smallest'}
onclick={() => (sort_order = 'smallest')}
>
Smallest Reduction
</button>
</div>
</div>
<div class="search-box">
<input
type="search"
bind:value={search_query}
placeholder="Search sections..."
class="search-input"
/>
</div>
<ul class="section-list">
{#each filtered_sections as section (section.slug)}
<li>
<button
class="section-item"
class:active={selected_slug === section.slug}
onclick={() => select_section(section.slug)}
>
<div class="section-header">
<div class="section-title">{section.slug}</div>
<div class="section-savings" class:negative={section.space_savings < 0}>
{section.space_savings.toFixed(1)}%
</div>
</div>
<div class="section-preview">
{is_distilled
? section.summary.slice(0, 100) + (section.summary.length > 100 ? '...' : '')
: section.summary}
</div>
</button>
</li>
{/each}
</ul>
</aside>
<main class="comparison-view">
{#if selected_section}
<div class="comparison-grid">
<div class="comparison-column">
<h2>
Original Content
<span class="char-count"
>{selected_section.original_length.toLocaleString()} chars</span
>
</h2>
<div class="content-box">
<pre>{selected_section.content}</pre>
</div>
</div>
<div class="comparison-column">
<h2>
{summary_title}
<span class="char-count"
>{selected_section.distilled_length.toLocaleString()} chars ({selected_section.space_savings.toFixed(
1,
)}% savings)</span
>
</h2>
<div class="content-box">
<pre>{selected_section.summary}</pre>
</div>
</div>
</div>
{:else}
<div class="empty-state">
<p>Select a section from the list to view the comparison</p>
</div>
{/if}
</main>
</div>
</div>
<style>
.container {
max-width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
}
header {
background: white;
border-bottom: 1px solid #e0e0e0;
padding: 1.5rem 2rem;
}
h1 {
margin: 0 0 0.5rem 0;
font-size: 1.875rem;
font-weight: 600;
color: #1a1a1a;
}
.metadata {
display: flex;
gap: 1.5rem;
font-size: 0.9375rem;
color: #666;
flex-wrap: wrap;
}
.main-content {
display: flex;
flex: 1;
overflow: hidden;
}
.sidebar {
width: 350px;
background: white;
border-right: 1px solid #e0e0e0;
display: flex;
flex-direction: column;
}
.sort-controls {
padding: 1rem;
border-bottom: 1px solid #e0e0e0;
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.sort-label {
font-size: 0.8125rem;
font-weight: 500;
color: #666;
}
.sort-buttons {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
}
.sort-button {
padding: 0.375rem 0.75rem;
border: 1px solid #e0e0e0;
border-radius: 4px;
background: white;
font-size: 0.8125rem;
font-family: inherit;
cursor: pointer;
transition: all 0.15s;
color: #666;
}
.sort-button:hover {
background: #f9fafb;
border-color: #d0d0d0;
}
.sort-button.active {
background: #3b82f6;
border-color: #3b82f6;
color: white;
}
.search-box {
padding: 1rem;
border-bottom: 1px solid #e0e0e0;
}
.search-input {
width: 100%;
padding: 0.5rem 0.75rem;
border: 1px solid #e0e0e0;
border-radius: 4px;
font-size: 0.9375rem;
font-family: inherit;
}
.search-input:focus {
outline: none;
border-color: #3b82f6;
}
.section-list {
list-style: none;
margin: 0;
padding: 0;
overflow-y: auto;
flex: 1;
}
.section-item {
width: 100%;
text-align: left;
padding: 0.75rem 1rem;
border: none;
border-bottom: 1px solid #f0f0f0;
background: white;
cursor: pointer;
transition: background-color 0.15s;
font-family: inherit;
}
.section-item:hover {
background: #f9fafb;
}
.section-item.active {
background: #eff6ff;
border-left: 3px solid #3b82f6;
}
.section-header {
display: flex;
justify-content: space-between;
align-items: center;
gap: 0.5rem;
margin-bottom: 0.25rem;
}
.section-title {
font-size: 0.9375rem;
font-weight: 500;
color: #1a1a1a;
flex: 1;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.section-savings {
font-size: 0.75rem;
font-weight: 600;
color: #10b981;
padding: 0.125rem 0.375rem;
background: #d1fae5;
border-radius: 3px;
white-space: nowrap;
}
.section-savings.negative {
color: #ef4444;
background: #fee2e2;
}
.section-preview {
font-size: 0.8125rem;
color: #666;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.comparison-view {
flex: 1;
overflow: auto;
background: #fafafa;
}
.comparison-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
padding: 1rem;
height: 100%;
}
.comparison-column {
background: white;
border: 1px solid #e0e0e0;
border-radius: 4px;
display: flex;
flex-direction: column;
overflow: hidden;
}
.comparison-column h2 {
margin: 0;
padding: 1rem;
font-size: 1.125rem;
font-weight: 600;
color: #1a1a1a;
border-bottom: 1px solid #e0e0e0;
background: #fafafa;
display: flex;
justify-content: space-between;
align-items: center;
gap: 1rem;
}
.char-count {
font-size: 0.8125rem;
font-weight: 400;
color: #666;
white-space: nowrap;
}
.content-box {
padding: 1rem;
overflow: auto;
flex: 1;
font-size: 0.9375rem;
line-height: 1.6;
}
.content-box pre {
margin: 0;
white-space: pre-wrap;
word-wrap: break-word;
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Courier New', monospace;
font-size: 0.875rem;
color: #333;
}
.empty-state {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
color: #666;
font-size: 0.9375rem;
}
@media (max-width: 768px) {
.comparison-grid {
grid-template-columns: 1fr;
}
.sidebar {
width: 100%;
max-height: 25vh;
}
.main-content {
flex-direction: column;
}
.comparison-column h2 {
flex-direction: column;
align-items: flex-start;
gap: 0.5rem;
}
.char-count {
font-size: 0.75rem;
}
}
</style>

View File

@@ -0,0 +1,8 @@
import { json } from '@sveltejs/kit';
import type { RequestHandler } from './$types';
import { fetchRepositoryTarball } from '$lib/fetchMarkdown';
export const GET: RequestHandler = async () => {
const tarball_buffer = await fetchRepositoryTarball('sveltejs', 'svelte.dev');
return json({ data: tarball_buffer });
};

View File

@@ -1,44 +0,0 @@
---
title: Overview
---
The Svelte MCP ([Model Context Protocol](https://modelcontextprotocol.io/docs/getting-started/intro)) server can help your LLM or agent of choice write better Svelte code. It works by providing documentation relevant to the task at hand, and statically analysing generated code so that it can suggest fixes and best practices.
## Setup
The setup varies based on the version of the MCP you prefer — remote or local — and your chosen MCP client (e.g. Claude Code, Codex CLI or GitHub Copilot):
- [local setup](local-setup) using `@sveltejs/mcp`
- [remote setup](remote-setup) using `https://mcp.svelte.dev/mcp`
## Usage
To get the most out of the MCP server we recommend including the following prompt in your [`AGENTS.md`](https://agents.md) (or [`CLAUDE.md`](https://docs.claude.com/en/docs/claude-code/memory#claude-md-imports), if using Claude Code). This will tell the LLM which tools are available and when it's appropriate to use them.
```md
You are able to use the Svelte MCP server, where you have access to comprehensive Svelte 5 and SvelteKit documentation. Here's how to use the available tools effectively:
## Available MCP Tools:
### 1. list-sections
Use this FIRST to discover all available documentation sections. Returns a structured list with titles, use_cases, and paths.
When asked about Svelte or SvelteKit topics, ALWAYS use this tool at the start of the chat to find relevant sections.
### 2. get-documentation
Retrieves full documentation content for specific sections. Accepts single or multiple sections.
After calling the list-sections tool, you MUST analyze the returned documentation sections (especially the use_cases field) and then use the get-documentation tool to fetch ALL documentation sections that are relevant for the user's task.
### 3. svelte-autofixer
Analyzes Svelte code and returns issues and suggestions.
You MUST use this tool whenever writing Svelte code before sending it to the user. Keep calling it until no issues or suggestions are returned.
### 4. playground-link
Generates a Svelte Playground link with the provided code.
After completing the code, ask the user if they want a playground link. Only call this tool after user confirmation and NEVER if code was written to files in their project.
```
If your MCP client supports it, we also recommend using the [svelte-task](prompts#svelte-task) prompt to instruct the LLM on the best way to use the MCP server.

View File

@@ -1,3 +0,0 @@
---
title: Introduction
---

View File

@@ -1,132 +0,0 @@
---
title: Local setup
---
The local (or stdio) version of the MCP server is available via the [`@sveltejs/mcp`](https://www.npmjs.com/package/@sveltejs/mcp) npm package. You can either install it globally and then reference it in your configuration or run it with `npx`:
```bash
npx -y @sveltejs/mcp
```
Here's how to set it up in some common MCP clients:
## Claude Code
To include the local MCP version in Claude Code, simply run the following command:
```bash
claude mcp add -t stdio -s [scope] svelte -- npx -y @sveltejs/mcp
```
The `[scope]` must be `user`, `project` or `local`.
## Claude Desktop
In the Settings > Developer section, click on Edit Config. It will open the folder with a `claude_desktop_config.json` file in it. Edit the file to include the following configuration:
```json
{
"mcpServers": {
"svelte": {
"command": "npx",
"args": ["-y", "@sveltejs/mcp"]
}
}
}
```
## Codex CLI
Add the following to your `config.toml` (which defaults to `~/.codex/config.toml`, but refer to [the configuration documentation](https://github.com/openai/codex/blob/main/docs/config.md) for more advanced setups):
```toml
[mcp_servers.svelte]
command = "npx"
args = ["-y", "@sveltejs/mcp"]
```
## Gemini CLI
To include the local MCP version in Gemini CLI, simply run the following command:
```bash
gemini mcp add -t stdio -s [scope] svelte npx -y @sveltejs/mcp
```
The `[scope]` must be `user`, `project` or `local`.
## OpenCode
Run the command:
```bash
opencode mcp add
```
and follow the instructions, selecting 'Local' under the 'Select MCP server type' prompt:
```bash
opencode mcp add
┌ Add MCP server
◇ Enter MCP server name
│ svelte
◇ Select MCP server type
│ Local
◆ Enter command to run
│ npx -y @sveltejs/mcp
```
## VS Code
- Open the command palette
- Select "MCP: Add Server..."
- Select "Command (stdio)"
- Insert `npx -y @sveltejs/mcp` in the input and press `Enter`
- When prompted for a name, insert `svelte`
- Select if you want to add it as a `Global` or `Workspace` MCP server
## Cursor
- Open the command palette
- Select "View: Open MCP Settings"
- Click on "Add custom MCP"
It will open a file with your MCP servers where you can add the following configuration:
```json
{
"mcpServers": {
"svelte": {
"command": "npx",
"args": ["-y", "@sveltejs/mcp"]
}
}
}
```
## Zed
- Open the command palette
- Search and select "agent:open settings"
- In settings panel look for `Model Context Protocol (MCP) Servers`
- Click on "Add Server"
- Select: "Add Custom Server"
It will open a popup with MCP server config where you can add the following configuration:
```json
{
"svelte": {
"command": "npx",
"args": ["-y", "@sveltejs/mcp"]
}
}
```
## Other clients
If we didn't include the MCP client you are using, refer to their documentation for `stdio` servers and use `npx` as the command and `-y @sveltejs/mcp` as the arguments.

View File

@@ -1,101 +0,0 @@
---
title: Remote setup
---
The remote version of the MCP server is available at `https://mcp.svelte.dev/mcp`.
Here's how to set it up in some common MCP clients:
## Claude Code
To include the remote MCP version in Claude Code, simply run the following command:
```bash
claude mcp add -t http -s [scope] svelte https://mcp.svelte.dev/mcp
```
You can choose your preferred `scope` (it must be `user`, `project` or `local`) and `name`.
## Claude Desktop
- Open Settings > Connectors
- Click on Add Custom Connector
- When prompted for a name, enter `svelte`
- Under the Remote MCP server URL input, use `https://mcp.svelte.dev/mcp`
- Click Add
## Codex CLI
Add the following to your `config.toml` (which defaults to `~/.codex/config.toml`, but refer to [the configuration documentation](https://github.com/openai/codex/blob/main/docs/config.md) for more advanced setups):
```toml
experimental_use_rmcp_client = true
[mcp_servers.svelte]
url = "https://mcp.svelte.dev/mcp"
```
## Gemini CLI
To use the remote MCP server with Gemini CLI, simply run the following command:
```bash
gemini mcp add -t http -s [scope] svelte https://mcp.svelte.dev/mcp
```
The `[scope]` must be `user`, `project` or `local`.
## OpenCode
Run the command:
```bash
opencode mcp add
```
and follow the instructions, selecting 'Remote' under the 'Select MCP server type' prompt:
```bash
opencode mcp add
┌ Add MCP server
◇ Enter MCP server name
│ svelte
◇ Select MCP server type
│ Remote
◇ Enter MCP server URL
│ https://mcp.svelte.dev/mcp
```
## VS Code
- Open the command palette
- Select "MCP: Add Server..."
- Select "HTTP (HTTP or Server-Sent-Events)"
- Insert `https://mcp.svelte.dev/mcp` in the input and press `Enter`
- Insert your preferred name
- Select if you want to add it as a `Global` or `Workspace` MCP server
## Cursor
- Open the command palette
- Select "View: Open MCP Settings"
- Click on "Add custom MCP"
It will open a file with your MCP servers where you can add the following configuration:
```json
{
"mcpServers": {
"svelte": {
"url": "https://mcp.svelte.dev/mcp"
}
}
}
```
## Other clients
If we didn't include the MCP client you are using, refer to their documentation for `remote` servers and use `https://mcp.svelte.dev/mcp` as the URL.

View File

@@ -1,3 +0,0 @@
---
title: Setup
---

View File

@@ -1,21 +0,0 @@
---
title: Tools
---
The following tools are provided by the MCP server to the model you are using, which can decide to call one or more of them during a session:
## list-sections
Provides a list of all the available documentation sections.
## get-documentation
Allows the model to get the full (and up-to-date) documentation for the requested sections directly from [svelte.dev/docs](/docs).
## svelte-autofixer
Uses static analysis to provide suggestions for code that your LLM generates. It can be invoked in an agentic loop by your model until all issues and suggestions are resolved.
## playground-link
Generates an ephemeral playground link with the generated code. It's useful when the generated code is not written to a file in your project and you want to quickly test the generated solution. The code is not stored anywhere except the URL itself (which will often, as a consequence, be quite large).

View File

@@ -1,9 +0,0 @@
---
title: Resources
---
This is the list of available resources provided by the MCP server. Resources are included by the user (not by the LLM) and are useful if you want to include specific knowledge in your session. For example, if you know that the component will need to use transitions you can include the transition documentation directly without asking the LLM to do it for you.
## doc-section
This dynamic resource allows you to add every section of the Svelte documentation as a resource. The URI looks like this `svelte://slug-of-the-docs.md` and the returned resource will contain the `llms.txt` version of the specific page you selected.

View File

@@ -1,205 +0,0 @@
---
title: Prompts
---
This is the list of available prompts provided by the MCP server. Prompts are selected by the user and are sent as a user message. They can be useful to write repetitive instructions for the LLM on how to properly use the MCP server.
## svelte-task
This prompt should be used whenever you are asking the model to work on a Svelte-related task. It will instruct the LLM which documentation sections are available, which tools to invoke, when to invoke them, and how to interpret the results.
<details>
<summary>Copy the prompt</summary>
```md
You are a Svelte expert tasked to build components and utilities for Svelte developers. If you need documentation for anything related to Svelte you can invoke the tool `get_documentation` with one of the following paths:
<available-docs>
- title: Overview, use_cases: project setup, creating new svelte apps, scaffolding, cli tools, initializing projects, path: cli/overview
- title: Frequently asked questions, use_cases: project setup, initializing new svelte projects, troubleshooting cli installation, package manager configuration, path: cli/faq
- title: sv create, use_cases: project setup, starting new sveltekit app, initializing project, creating from playground, choosing project template, path: cli/sv-create
- title: sv add, use_cases: project setup, adding features to existing projects, integrating tools, testing setup, styling setup, authentication, database setup, deployment adapters, path: cli/sv-add
- title: sv check, use_cases: code quality, ci/cd pipelines, error checking, typescript projects, pre-commit hooks, finding unused css, accessibility auditing, production builds, path: cli/sv-check
- title: sv migrate, use_cases: migration, upgrading svelte versions, upgrading sveltekit versions, modernizing codebase, svelte 3 to 4, svelte 4 to 5, sveltekit 1 to 2, adopting runes, refactoring deprecated apis, path: cli/sv-migrate
- title: devtools-json, use_cases: development setup, chrome devtools integration, browser-based editing, local development workflow, debugging setup, path: cli/devtools-json
- title: drizzle, use_cases: database setup, sql queries, orm integration, data modeling, postgresql, mysql, sqlite, server-side data access, database migrations, type-safe queries, path: cli/drizzle
- title: eslint, use_cases: code quality, linting, error detection, project setup, code standards, team collaboration, typescript projects, path: cli/eslint
- title: lucia, use_cases: authentication, login systems, user management, registration pages, session handling, auth setup, path: cli/lucia
- title: mdsvex, use_cases: blog, content sites, markdown rendering, documentation sites, technical writing, cms integration, article pages, path: cli/mdsvex
- title: paraglide, use_cases: internationalization, multi-language sites, i18n, translation, localization, language switching, global apps, multilingual content, path: cli/paraglide
- title: playwright, use_cases: browser testing, e2e testing, integration testing, test automation, quality assurance, ci/cd pipelines, testing user flows, path: cli/playwright
- title: prettier, use_cases: code formatting, project setup, code style consistency, team collaboration, linting configuration, path: cli/prettier
- title: storybook, use_cases: component development, design systems, ui library, isolated component testing, documentation, visual testing, component showcase, path: cli/storybook
- title: sveltekit-adapter, use_cases: deployment, production builds, hosting setup, choosing deployment platform, configuring adapters, static site generation, node server, vercel, cloudflare, netlify, path: cli/sveltekit-adapter
- title: tailwindcss, use_cases: project setup, styling, css framework, rapid prototyping, utility-first css, design systems, responsive design, adding tailwind to svelte, path: cli/tailwind
- title: vitest, use_cases: testing, unit tests, component testing, test setup, quality assurance, ci/cd pipelines, test-driven development, path: cli/vitest
- title: Introduction, use_cases: learning sveltekit, project setup, understanding framework basics, choosing between svelte and sveltekit, getting started with full-stack apps, path: kit/introduction
- title: Creating a project, use_cases: project setup, starting new sveltekit app, initial development environment, first-time sveltekit users, scaffolding projects, path: kit/creating-a-project
- title: Project types, use_cases: deployment, project setup, choosing adapters, ssg, spa, ssr, serverless, mobile apps, desktop apps, pwa, offline apps, browser extensions, separate backend, docker containers, path: kit/project-types
- title: Project structure, use_cases: project setup, understanding file structure, organizing code, starting new project, learning sveltekit basics, path: kit/project-structure
- title: Web standards, use_cases: always, any sveltekit project, data fetching, forms, api routes, server-side rendering, deployment to various platforms, path: kit/web-standards
- title: Routing, use_cases: routing, navigation, multi-page apps, project setup, file structure, api endpoints, data loading, layouts, error pages, always, path: kit/routing
- title: Loading data, use_cases: data fetching, api calls, database queries, dynamic routes, page initialization, loading states, authentication checks, ssr data, form data, content rendering, path: kit/load
- title: Form actions, use_cases: forms, user input, data submission, authentication, login systems, user registration, progressive enhancement, validation errors, path: kit/form-actions
- title: Page options, use_cases: prerendering static sites, ssr configuration, spa setup, client-side rendering control, url trailing slash handling, adapter deployment config, build optimization, path: kit/page-options
- title: State management, use_cases: sveltekit, server-side rendering, ssr, state management, authentication, data persistence, load functions, context api, navigation, component lifecycle, path: kit/state-management
- title: Remote functions, use_cases: data fetching, server-side logic, database queries, type-safe client-server communication, forms, user input, mutations, authentication, crud operations, optimistic updates, path: kit/remote-functions
- title: Building your app, use_cases: production builds, deployment preparation, build process optimization, adapter configuration, preview before deployment, path: kit/building-your-app
- title: Adapters, use_cases: deployment, production builds, hosting setup, choosing deployment platform, configuring adapters, path: kit/adapters
- title: Zero-config deployments, use_cases: deployment, production builds, hosting setup, choosing deployment platform, ci/cd configuration, path: kit/adapter-auto
- title: Node servers, use_cases: deployment, production builds, node.js hosting, custom server setup, environment configuration, reverse proxy setup, docker deployment, systemd services, path: kit/adapter-node
- title: Static site generation, use_cases: static site generation, ssg, prerendering, deployment, github pages, spa mode, blogs, documentation sites, marketing sites, path: kit/adapter-static
- title: Single-page apps, use_cases: spa mode, single-page apps, client-only rendering, static hosting, mobile app wrappers, no server-side logic, adapter-static setup, fallback pages, path: kit/single-page-apps
- title: Cloudflare, use_cases: deployment, cloudflare workers, cloudflare pages, hosting setup, production builds, serverless deployment, edge computing, path: kit/adapter-cloudflare
- title: Cloudflare Workers, use_cases: deploying to cloudflare workers, cloudflare workers sites deployment, legacy cloudflare adapter, wrangler configuration, cloudflare platform bindings, path: kit/adapter-cloudflare-workers
- title: Netlify, use_cases: deployment, netlify hosting, production builds, serverless functions, edge functions, static site hosting, path: kit/adapter-netlify
- title: Vercel, use_cases: deployment, vercel hosting, production builds, serverless functions, edge functions, isr, image optimization, environment variables, path: kit/adapter-vercel
- title: Writing adapters, use_cases: custom deployment, building adapters, unsupported platforms, adapter development, custom hosting environments, path: kit/writing-adapters
- title: Advanced routing, use_cases: advanced routing, dynamic routes, file viewers, nested paths, custom 404 pages, url validation, route parameters, multi-level navigation, path: kit/advanced-routing
- title: Hooks, use_cases: authentication, logging, error tracking, request interception, api proxying, custom routing, internationalization, database initialization, middleware logic, session management, path: kit/hooks
- title: Errors, use_cases: error handling, custom error pages, 404 pages, api error responses, production error logging, error tracking, type-safe errors, path: kit/errors
- title: Link options, use_cases: routing, navigation, multi-page apps, performance optimization, link preloading, forms with get method, search functionality, focus management, scroll behavior, path: kit/link-options
- title: Service workers, use_cases: offline support, pwa, caching strategies, performance optimization, precaching assets, network resilience, progressive web apps, path: kit/service-workers
- title: Server-only modules, use_cases: api keys, environment variables, sensitive data protection, backend security, preventing data leaks, server-side code isolation, path: kit/server-only-modules
- title: Snapshots, use_cases: forms, user input, preserving form data, multi-step forms, navigation state, preventing data loss, textarea content, input fields, comment systems, surveys, path: kit/snapshots
- title: Shallow routing, use_cases: modals, dialogs, image galleries, overlays, history-driven ui, mobile-friendly navigation, photo viewers, lightboxes, drawer menus, path: kit/shallow-routing
- title: Observability, use_cases: performance monitoring, debugging, observability, tracing requests, production diagnostics, analyzing slow requests, finding bottlenecks, monitoring server-side operations, path: kit/observability
- title: Packaging, use_cases: building component libraries, publishing npm packages, creating reusable svelte components, library development, package distribution, path: kit/packaging
- title: Auth, use_cases: authentication, login systems, user management, session handling, jwt tokens, protected routes, user credentials, authorization checks, path: kit/auth
- title: Performance, use_cases: performance optimization, slow loading pages, production deployment, debugging performance issues, reducing bundle size, improving load times, path: kit/performance
- title: Icons, use_cases: icons, ui components, styling, css frameworks, tailwind, unocss, performance optimization, dependency management, path: kit/icons
- title: Images, use_cases: image optimization, responsive images, performance, hero images, product photos, galleries, cms integration, cdn setup, asset management, path: kit/images
- title: Accessibility, use_cases: always, any sveltekit project, screen reader support, keyboard navigation, multi-page apps, client-side routing, internationalization, multilingual sites, path: kit/accessibility
- title: SEO, use_cases: seo optimization, search engine ranking, content sites, blogs, marketing sites, public-facing apps, sitemaps, amp pages, meta tags, performance optimization, path: kit/seo
- title: Frequently asked questions, use_cases: troubleshooting package imports, library compatibility issues, client-side code execution, external api integration, middleware setup, database configuration, view transitions, yarn configuration, path: kit/faq
- title: Integrations, use_cases: project setup, css preprocessors, postcss, scss, sass, less, stylus, typescript setup, adding integrations, tailwind, testing, auth, linting, formatting, path: kit/integrations
- title: Breakpoint Debugging, use_cases: debugging, breakpoints, development workflow, troubleshooting issues, vscode setup, ide configuration, inspecting code execution, path: kit/debugging
- title: Migrating to SvelteKit v2, use_cases: migration, upgrading from sveltekit 1 to 2, breaking changes, version updates, path: kit/migrating-to-sveltekit-2
- title: Migrating from Sapper, use_cases: migrating from sapper, upgrading legacy projects, sapper to sveltekit conversion, project modernization, path: kit/migrating
- title: Additional resources, use_cases: troubleshooting, getting help, finding examples, learning sveltekit, project templates, common issues, community support, path: kit/additional-resources
- title: Glossary, use_cases: rendering strategies, performance optimization, deployment configuration, seo requirements, static sites, spas, server-side rendering, prerendering, edge deployment, pwa development, path: kit/glossary
- title: @sveltejs/kit, use_cases: forms, form actions, server-side validation, form submission, error handling, redirects, json responses, http errors, server utilities, path: kit/@sveltejs-kit
- title: @sveltejs/kit/hooks, use_cases: middleware, request processing, authentication chains, logging, multiple hooks, request/response transformation, path: kit/@sveltejs-kit-hooks
- title: @sveltejs/kit/node/polyfills, use_cases: node.js environments, custom servers, non-standard runtimes, ssr setup, web api compatibility, polyfill requirements, path: kit/@sveltejs-kit-node-polyfills
- title: @sveltejs/kit/node, use_cases: node.js adapter, custom server setup, http integration, streaming files, node deployment, server-side rendering with node, path: kit/@sveltejs-kit-node
- title: @sveltejs/kit/vite, use_cases: project setup, vite configuration, initial sveltekit setup, build tooling, path: kit/@sveltejs-kit-vite
- title: $app/environment, use_cases: always, conditional logic, client-side code, server-side code, build-time logic, prerendering, development vs production, environment detection, path: kit/$app-environment
- title: $app/forms, use_cases: forms, user input, data submission, progressive enhancement, custom form handling, form validation, path: kit/$app-forms
- title: $app/navigation, use_cases: routing, navigation, multi-page apps, programmatic navigation, data reloading, preloading, shallow routing, navigation lifecycle, scroll handling, view transitions, path: kit/$app-navigation
- title: $app/paths, use_cases: static assets, images, fonts, public files, base path configuration, subdirectory deployment, cdn setup, asset urls, links, navigation, path: kit/$app-paths
- title: $app/server, use_cases: remote functions, server-side logic, data fetching, form handling, api endpoints, client-server communication, prerendering, file reading, batch queries, path: kit/$app-server
- title: $app/state, use_cases: routing, navigation, multi-page apps, loading states, url parameters, form handling, error states, version updates, page metadata, shallow routing, path: kit/$app-state
- title: $app/stores, use_cases: legacy projects, sveltekit pre-2.12, migration from stores to runes, maintaining older codebases, accessing page data, navigation state, app version updates, path: kit/$app-stores
- title: $app/types, use_cases: routing, navigation, type safety, route parameters, dynamic routes, link generation, pathname validation, multi-page apps, path: kit/$app-types
- title: $env/dynamic/private, use_cases: api keys, secrets management, server-side config, environment variables, backend logic, deployment-specific settings, private data handling, path: kit/$env-dynamic-private
- title: $env/dynamic/public, use_cases: environment variables, client-side config, runtime configuration, public api keys, deployment-specific settings, multi-environment apps, path: kit/$env-dynamic-public
- title: $env/static/private, use_cases: server-side api keys, backend secrets, database credentials, private configuration, build-time optimization, server endpoints, authentication tokens, path: kit/$env-static-private
- title: $env/static/public, use_cases: environment variables, public config, client-side data, api endpoints, build-time configuration, public constants, path: kit/$env-static-public
- title: $lib, use_cases: project setup, component organization, importing shared components, reusable ui elements, code structure, path: kit/$lib
- title: $service-worker, use_cases: offline support, pwa, service workers, caching strategies, progressive web apps, offline-first apps, path: kit/$service-worker
- title: Configuration, use_cases: project setup, configuration, adapters, deployment, build settings, environment variables, routing customization, prerendering, csp security, csrf protection, path configuration, typescript setup, path: kit/configuration
- title: Command Line Interface, use_cases: project setup, typescript configuration, generated types, ./$types imports, initial project configuration, path: kit/cli
- title: Types, use_cases: typescript, type safety, route parameters, api endpoints, load functions, form actions, generated types, jsconfig setup, path: kit/types
- title: Overview, use_cases: use title and path to estimate use case, path: mcp/overview
- title: Local setup, use_cases: use title and path to estimate use case, path: mcp/local-setup
- title: Remote setup, use_cases: use title and path to estimate use case, path: mcp/remote-setup
- title: Tools, use_cases: use title and path to estimate use case, path: mcp/tools
- title: Resources, use_cases: use title and path to estimate use case, path: mcp/resources
- title: Prompts, use_cases: use title and path to estimate use case, path: mcp/prompts
- title: Overview, use_cases: always, any svelte project, getting started, learning svelte, introduction, project setup, understanding framework basics, path: svelte/overview
- title: Getting started, use_cases: project setup, starting new svelte project, initial installation, choosing between sveltekit and vite, editor configuration, path: svelte/getting-started
- title: .svelte files, use_cases: always, any svelte project, component creation, project setup, learning svelte basics, path: svelte/svelte-files
- title: .svelte.js and .svelte.ts files, use_cases: shared reactive state, reusable reactive logic, state management across components, global stores, custom reactive utilities, path: svelte/svelte-js-files
- title: What are runes?, use_cases: always, any svelte 5 project, understanding core syntax, learning svelte 5, migration from svelte 4, path: svelte/what-are-runes
- title: $state, use_cases: always, any svelte project, core reactivity, state management, counters, forms, todo apps, interactive ui, data updates, class-based components, path: svelte/$state
- title: $derived, use_cases: always, any svelte project, computed values, reactive calculations, derived data, transforming state, dependent values, path: svelte/$derived
- title: $effect, use_cases: canvas drawing, third-party library integration, dom manipulation, side effects, intervals, timers, network requests, analytics tracking, path: svelte/$effect
- title: $props, use_cases: always, any svelte project, passing data to components, component communication, reusable components, component props, path: svelte/$props
- title: $bindable, use_cases: forms, user input, two-way data binding, custom input components, parent-child communication, reusable form fields, path: svelte/$bindable
- title: $inspect, use_cases: debugging, development, tracking state changes, reactive state monitoring, troubleshooting reactivity issues, path: svelte/$inspect
- title: $host, use_cases: custom elements, web components, dispatching custom events, component library, framework-agnostic components, path: svelte/$host
- title: Basic markup, use_cases: always, any svelte project, basic markup, html templating, component structure, attributes, events, props, text rendering, path: svelte/basic-markup
- title: {#if ...}, use_cases: always, conditional rendering, showing/hiding content, dynamic ui, user permissions, loading states, error handling, form validation, path: svelte/if
- title: {#each ...}, use_cases: always, lists, arrays, iteration, product listings, todos, tables, grids, dynamic content, shopping carts, user lists, comments, feeds, path: svelte/each
- title: {#key ...}, use_cases: animations, transitions, component reinitialization, forcing component remount, value-based ui updates, resetting component state, path: svelte/key
- title: {#await ...}, use_cases: async data fetching, api calls, loading states, promises, error handling, lazy loading components, dynamic imports, path: svelte/await
- title: {#snippet ...}, use_cases: reusable markup, component composition, passing content to components, table rows, list items, conditional rendering, reducing duplication, path: svelte/snippet
- title: {@render ...}, use_cases: reusable ui patterns, component composition, conditional rendering, fallback content, layout components, slot alternatives, template reuse, path: svelte/@render
- title: {@html ...}, use_cases: rendering html strings, cms content, rich text editors, markdown to html, blog posts, wysiwyg output, sanitized html injection, dynamic html content, path: svelte/@html
- title: {@attach ...}, use_cases: tooltips, popovers, dom manipulation, third-party libraries, canvas drawing, element lifecycle, interactive ui, custom directives, wrapper components, path: svelte/@attach
- title: {@const ...}, use_cases: computed values in loops, derived calculations in blocks, local variables in each iterations, complex list rendering, path: svelte/@const
- title: {@debug ...}, use_cases: debugging, development, troubleshooting, tracking state changes, monitoring variables, reactive data inspection, path: svelte/@debug
- title: bind:, use_cases: forms, user input, two-way data binding, interactive ui, media players, file uploads, checkboxes, radio buttons, select dropdowns, contenteditable, dimension tracking, path: svelte/bind
- title: use:, use_cases: custom directives, dom manipulation, third-party library integration, tooltips, click outside, gestures, focus management, element lifecycle hooks, path: svelte/use
- title: transition:, use_cases: animations, interactive ui, modals, dropdowns, notifications, conditional content, show/hide elements, smooth state changes, path: svelte/transition
- title: in: and out:, use_cases: animation, transitions, interactive ui, conditional rendering, independent enter/exit effects, modals, tooltips, notifications, path: svelte/in-and-out
- title: animate:, use_cases: sortable lists, drag and drop, reorderable items, todo lists, kanban boards, playlist editors, priority queues, animated list reordering, path: svelte/animate
- title: style:, use_cases: dynamic styling, conditional styles, theming, dark mode, responsive design, interactive ui, component styling, path: svelte/style
- title: class, use_cases: always, conditional styling, dynamic classes, tailwind css, component styling, reusable components, responsive design, path: svelte/class
- title: await, use_cases: async data fetching, loading states, server-side rendering, awaiting promises in components, async validation, concurrent data loading, path: svelte/await-expressions
- title: Scoped styles, use_cases: always, styling components, scoped css, component-specific styles, preventing style conflicts, animations, keyframes, path: svelte/scoped-styles
- title: Global styles, use_cases: global styles, third-party libraries, css resets, animations, styling body/html, overriding component styles, shared keyframes, base styles, path: svelte/global-styles
- title: Custom properties, use_cases: theming, custom styling, reusable components, design systems, dynamic colors, component libraries, ui customization, path: svelte/custom-properties
- title: Nested <style> elements, use_cases: component styling, scoped styles, dynamic styles, conditional styling, nested style tags, custom styling logic, path: svelte/nested-style-elements
- title: <svelte:boundary>, use_cases: error handling, async data loading, loading states, error recovery, flaky components, error reporting, resilient ui, path: svelte/svelte-boundary
- title: <svelte:window>, use_cases: keyboard shortcuts, scroll tracking, window resize handling, responsive layouts, online/offline detection, viewport dimensions, global event listeners, path: svelte/svelte-window
- title: <svelte:document>, use_cases: document events, visibility tracking, fullscreen detection, pointer lock, focus management, document-level interactions, path: svelte/svelte-document
- title: <svelte:body>, use_cases: mouse tracking, hover effects, cursor interactions, global body events, drag and drop, custom cursors, interactive backgrounds, body-level actions, path: svelte/svelte-body
- title: <svelte:head>, use_cases: seo optimization, page titles, meta tags, social media sharing, dynamic head content, multi-page apps, blog posts, product pages, path: svelte/svelte-head
- title: <svelte:element>, use_cases: dynamic content, cms integration, user-generated content, configurable ui, runtime element selection, flexible components, path: svelte/svelte-element
- title: <svelte:options>, use_cases: migration, custom elements, web components, legacy mode compatibility, runes mode setup, svg components, mathml components, css injection control, path: svelte/svelte-options
- title: Stores, use_cases: shared state, cross-component data, reactive values, async data streams, manual control over updates, rxjs integration, extracting logic, path: svelte/stores
- title: Context, use_cases: shared state, avoiding prop drilling, component communication, theme providers, user context, authentication state, configuration sharing, deeply nested components, path: svelte/context
- title: Lifecycle hooks, use_cases: component initialization, cleanup tasks, timers, subscriptions, dom measurements, chat windows, autoscroll features, migration from svelte 4, path: svelte/lifecycle-hooks
- title: Imperative component API, use_cases: project setup, client-side rendering, server-side rendering, ssr, hydration, testing, programmatic component creation, tooltips, dynamic mounting, path: svelte/imperative-component-api
- title: Testing, use_cases: testing, quality assurance, unit tests, integration tests, component tests, e2e tests, vitest setup, playwright setup, test automation, path: svelte/testing
- title: TypeScript, use_cases: typescript setup, type safety, component props typing, generic components, wrapper components, dom type augmentation, project configuration, path: svelte/typescript
- title: Custom elements, use_cases: web components, custom elements, component library, design system, framework-agnostic components, embedding svelte in non-svelte apps, shadow dom, path: svelte/custom-elements
- title: Svelte 4 migration guide, use_cases: upgrading svelte 3 to 4, version migration, updating dependencies, breaking changes, legacy project maintenance, path: svelte/v4-migration-guide
- title: Svelte 5 migration guide, use_cases: migrating from svelte 4 to 5, upgrading projects, learning svelte 5 syntax changes, runes migration, event handler updates, path: svelte/v5-migration-guide
- title: Frequently asked questions, use_cases: getting started, learning svelte, beginner setup, project initialization, vs code setup, formatting, testing, routing, mobile apps, troubleshooting, community support, path: svelte/faq
- title: svelte, use_cases: migration from svelte 4 to 5, upgrading legacy code, component lifecycle hooks, context api, mounting components, event dispatchers, typescript component types, path: svelte/svelte
- title: svelte/action, use_cases: typescript types, actions, use directive, dom manipulation, element lifecycle, custom behaviors, third-party library integration, path: svelte/svelte-action
- title: svelte/animate, use_cases: animated lists, sortable items, drag and drop, reordering elements, todo lists, kanban boards, playlist management, smooth position transitions, path: svelte/svelte-animate
- title: svelte/attachments, use_cases: library development, component libraries, programmatic element manipulation, migrating from actions to attachments, spreading props onto elements, path: svelte/svelte-attachments
- title: svelte/compiler, use_cases: build tools, custom compilers, ast manipulation, preprocessors, code transformation, migration scripts, syntax analysis, bundler plugins, dev tools, path: svelte/svelte-compiler
- title: svelte/easing, use_cases: animations, transitions, custom easing, smooth motion, interactive ui, modals, dropdowns, carousels, page transitions, scroll effects, path: svelte/svelte-easing
- title: svelte/events, use_cases: window events, document events, global event listeners, event delegation, programmatic event handling, cleanup functions, media queries, path: svelte/svelte-events
- title: svelte/legacy, use_cases: migration from svelte 4 to svelte 5, upgrading legacy code, event modifiers, class components, imperative component instantiation, path: svelte/svelte-legacy
- title: svelte/motion, use_cases: animation, smooth transitions, interactive ui, sliders, counters, physics-based motion, drag gestures, accessibility, reduced motion, path: svelte/svelte-motion
- title: svelte/reactivity/window, use_cases: responsive design, viewport tracking, scroll effects, window resize handling, online/offline detection, zoom level tracking, path: svelte/svelte-reactivity-window
- title: svelte/reactivity, use_cases: reactive data structures, state management with maps/sets, game boards, selection tracking, url manipulation, query params, real-time clocks, media queries, responsive design, path: svelte/svelte-reactivity
- title: svelte/server, use_cases: server-side rendering, ssr, static site generation, seo optimization, initial page load, pre-rendering, node.js server, custom server setup, path: svelte/svelte-server
- title: svelte/store, use_cases: state management, shared data, reactive stores, cross-component communication, global state, computed values, data synchronization, legacy svelte projects, path: svelte/svelte-store
- title: svelte/transition, use_cases: animations, transitions, interactive ui, modals, dropdowns, tooltips, notifications, svg animations, list animations, page transitions, path: svelte/svelte-transition
- title: Compiler errors, use_cases: animation, transitions, keyed each blocks, list animations, path: svelte/compiler-errors
- title: Compiler warnings, use_cases: accessibility, a11y compliance, wcag standards, screen readers, keyboard navigation, aria attributes, semantic html, interactive elements, path: svelte/compiler-warnings
- title: Runtime errors, use_cases: debugging errors, error handling, troubleshooting runtime issues, migration to svelte 5, component binding, effects and reactivity, path: svelte/runtime-errors
- title: Runtime warnings, use_cases: debugging state proxies, console logging reactive values, inspecting state changes, development troubleshooting, path: svelte/runtime-warnings
- title: Overview, use_cases: migrating from svelte 3/4 to svelte 5, maintaining legacy components, understanding deprecated features, gradual upgrade process, path: svelte/legacy-overview
- title: Reactive let/var declarations, use_cases: migration, legacy svelte projects, upgrading from svelte 4, understanding old reactivity, maintaining existing code, learning runes differences, path: svelte/legacy-let
- title: Reactive $: statements, use_cases: legacy mode, migration from svelte 4, reactive statements, computed values, derived state, side effects, path: svelte/legacy-reactive-assignments
- title: export let, use_cases: legacy mode, migration from svelte 4, maintaining older projects, component props without runes, exporting component methods, renaming reserved word props, path: svelte/legacy-export-let
- title: $$props and $$restProps, use_cases: legacy mode migration, component wrappers, prop forwarding, button components, reusable ui components, spreading props to child elements, path: svelte/legacy-$$props-and-$$restProps
- title: on:, use_cases: legacy mode, event handling, button clicks, forms, user interactions, component communication, event forwarding, event modifiers, path: svelte/legacy-on
- title: <slot>, use_cases: legacy mode, migrating from svelte 4, component composition, reusable components, passing content to components, modals, layouts, wrappers, path: svelte/legacy-slots
- title: $$slots, use_cases: legacy mode, conditional slot rendering, optional content sections, checking if slots provided, migrating from legacy to runes, path: svelte/legacy-$$slots
- title: <svelte:fragment>, use_cases: named slots, component composition, layout systems, avoiding wrapper divs, legacy svelte projects, slot content organization, path: svelte/legacy-svelte-fragment
- title: <svelte:component>, use_cases: dynamic components, component switching, conditional rendering, legacy mode migration, tabbed interfaces, multi-step forms, path: svelte/legacy-svelte-component
- title: <svelte:self>, use_cases: recursive components, tree structures, nested menus, file explorers, comment threads, hierarchical data, path: svelte/legacy-svelte-self
- title: Imperative component API, use_cases: migration from svelte 3/4 to 5, legacy component api, maintaining old projects, understanding deprecated patterns, path: svelte/legacy-component-api
</available-docs>
Every time you write a Svelte component or a Svelte module you MUST invoke the `svelte-autofixer` tool providing the code. The tool will return a list of issues or suggestions. If there are any issues or suggestions you MUST fix them and call the tool again with the updated code. You MUST keep doing this until the tool returns no issues or suggestions. Only then you can return the code to the user.
This is the task you will work on:
<task>
[YOUR TASK HERE]
</task>
If you are not writing the code into a file, once you have the final version of the code ask the user if it wants to generate a playground link to quickly check the code in it and if it answer yes call the `playground-link` tool and return the url to the user nicely formatted. The playground link MUST be generated only once you have the final version of the code and you are ready to share it, it MUST include an entry point file called `App.svelte` where the main component should live. If you have multiple files to include in the playground link you can include them all at the root.
```
</details>

View File

@@ -1,3 +0,0 @@
---
title: Capabilities
---

View File

@@ -1,3 +0,0 @@
---
title: MCP
---

View File

@@ -12,9 +12,6 @@ const gitignore_path = fileURLToPath(new URL('./.gitignore', import.meta.url));
export default /** @type {import("eslint").Linter.Config} */ ([
includeIgnoreFile(gitignore_path),
{
ignores: ['.claude/**/*'],
},
js.configs.recommended,
...ts.configs.recommended,
...svelte.configs.recommended,
@@ -37,13 +34,6 @@ export default /** @type {import("eslint").Linter.Config} */ ([
leadingUnderscore: 'allow',
},
],
'@typescript-eslint/no-unused-vars': [
'error',
{
varsIgnorePattern: '^_',
ignoreRestSiblings: true,
},
],
'func-style': ['error', 'declaration', { allowTypeAnnotation: true }],
'import/no-unresolved': 'off', // this doesn't work well with typescript path mapping
'import/extensions': [
@@ -57,7 +47,6 @@ export default /** @type {import("eslint").Linter.Config} */ ([
svelte: 'always',
},
],
'svelte/no-navigation-without-resolve': 'off',
},
},
{

View File

@@ -3,31 +3,17 @@
"version": "0.0.1",
"description": "The official Svelte MCP server implementation",
"type": "module",
"packageManager": "pnpm@10.18.2",
"scripts": {
"dev": "pnpm --filter mcp-remote dev",
"build": "pnpm -r run build",
"dev": "pnpm --filter @sveltejs/mcp-remote run dev",
"check": "pnpm -r run check",
"check:publint": "pnpm -r run check:publint",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"lint:fix": "prettier --write . && eslint . --fix",
"test:unit": "vitest",
"test": "npm run test:unit -- --run",
"test:watch": "npm run test:unit -- --watch",
"inspect": "pnpm mcp-inspector",
"generate-summaries": "pnpm --filter @sveltejs/mcp-server run generate-summaries",
"generate-summaries:dry-run": "pnpm --filter @sveltejs/mcp-server run generate-summaries:dry-run",
"generate-summaries:debug": "pnpm --filter @sveltejs/mcp-server run generate-summaries:debug",
"generate-distilled": "pnpm --filter @sveltejs/mcp-server run generate-distilled",
"generate-distilled:dry-run": "pnpm --filter @sveltejs/mcp-server run generate-distilled:dry-run",
"generate-distilled:debug": "pnpm --filter @sveltejs/mcp-server run generate-distilled:debug",
"verify-distilled": "pnpm --filter @sveltejs/mcp-server run verify-distilled",
"show-verification-errors": "pnpm --filter @sveltejs/mcp-server run show-verification-errors",
"export-summaries": "pnpm --filter @sveltejs/mcp-server run export-summaries",
"generate-prompt-docs": "node --import node-resolve-ts/register scripts/update-docs-prompts.ts",
"release": "pnpm --filter @sveltejs/mcp run build && changeset publish",
"changeset:version": "changeset version && pnpm --filter @sveltejs/mcp run update:version && git add --all"
"inspect": "pnpm mcp-inspector"
},
"keywords": [
"svelte",
@@ -37,23 +23,32 @@
],
"private": true,
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@eslint/compat": "^1.3.2",
"@eslint/js": "^9.36.0",
"@modelcontextprotocol/inspector": "^0.17.0",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"eslint": "^9.36.0",
"@modelcontextprotocol/inspector": "^0.16.7",
"@sveltejs/adapter-vercel": "^5.6.3",
"@sveltejs/kit": "^2.22.0",
"@sveltejs/vite-plugin-svelte": "^6.0.0",
"@types/eslint-scope": "^8.3.2",
"@types/estree": "^1.0.8",
"@types/node": "^24.3.1",
"@types/tar-stream": "^3.1.4",
"@typescript-eslint/types": "^8.43.0",
"dotenv": "^17.2.2",
"drizzle-kit": "^0.30.2",
"drizzle-orm": "^0.40.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-svelte": "^3.12.3",
"globals": "^16.0.0",
"node-resolve-ts": "^1.0.2",
"minimatch": "^10.0.3",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"publint": "^0.3.13",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tar-stream": "^3.1.7",
"typescript": "^5.0.0",
"typescript-eslint": "^8.44.1",
"vite-node": "^3.2.4",
"vitest": "^3.2.3"
},
"pnpm": {

View File

@@ -12,8 +12,9 @@
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.15.1",
"type": "module",
"dependencies": {
"drizzle-orm": "^0.44.0"
"drizzle-orm": "^0.40.1"
}
}

View File

@@ -1,4 +1,4 @@
import { integer, sqliteTable, text } from 'drizzle-orm/sqlite-core';
import { blob, integer, sqliteTable, text } from 'drizzle-orm/sqlite-core';
import { float_32_array } from './utils.js';
/**
@@ -51,7 +51,7 @@ export const distillation_jobs = sqliteTable('distillation_jobs', {
export const content = sqliteTable('content', {
id: integer('id').primaryKey(),
path: text('path').notNull(),
path: text('path').notNull().unique(),
filename: text('filename').notNull(),
content: text('content').notNull(),
size_bytes: integer('size_bytes').notNull(),
@@ -67,7 +67,7 @@ export const content = sqliteTable('content', {
export const content_distilled = sqliteTable('content_distilled', {
id: integer('id').primaryKey(),
path: text('path').notNull(),
path: text('path').notNull().unique(),
filename: text('filename').notNull(),
content: text('content').notNull(),
size_bytes: integer('size_bytes').notNull(),
@@ -80,3 +80,17 @@ export const content_distilled = sqliteTable('content_distilled', {
.notNull()
.$defaultFn(() => new Date()),
});
export const cache = sqliteTable('cache', {
id: integer('id').primaryKey(),
cache_key: text('cache_key').notNull().unique(),
data: blob('data', { mode: 'buffer' }).notNull(),
size_bytes: integer('size_bytes').notNull(),
expires_at: integer('expires_at', { mode: 'timestamp' }).notNull(),
created_at: integer('created_at', { mode: 'timestamp' })
.notNull()
.$defaultFn(() => new Date()),
updated_at: integer('updated_at', { mode: 'timestamp' })
.notNull()
.$defaultFn(() => new Date()),
});

View File

@@ -1,2 +0,0 @@
# Anthropic API Key from: https://console.anthropic.com/
ANTHROPIC_API_KEY=your_api_key_here

View File

@@ -7,26 +7,16 @@
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.15.1",
"type": "module",
"scripts": {
"test": "vitest",
"generate-summaries": "node --import node-resolve-ts/register scripts/generate-summaries.ts && prettier --write --log-level silent 'src/**/*.{js,ts,json}'",
"generate-summaries:dry-run": "node --import node-resolve-ts/register scripts/generate-summaries.ts --dry-run && prettier --write --log-level silent 'src/**/*.{js,ts,json}'",
"generate-summaries:debug": "DEBUG_MODE=1 node --import node-resolve-ts/register scripts/generate-summaries.ts && prettier --write --log-level silent 'src/**/*.{js,ts,json}'",
"generate-distilled": "node --import node-resolve-ts/register scripts/generate-summaries.ts --prompt-type distilled && prettier --write --log-level silent 'src/**/*.{js,ts,json}'",
"generate-distilled:dry-run": "node --import node-resolve-ts/register scripts/generate-summaries.ts --prompt-type distilled --dry-run && prettier --write --log-level silent 'src/**/*.{js,ts,json}'",
"generate-distilled:debug": "DEBUG_MODE=1 node --import node-resolve-ts/register scripts/generate-summaries.ts --prompt-type distilled && prettier --write --log-level silent 'src/**/*.{js,ts,json}'",
"verify-distilled": "node --import node-resolve-ts/register scripts/verify-distilled.ts",
"show-verification-errors": "node --import node-resolve-ts/register scripts/show-verification-errors.ts",
"export-summaries": "node --import node-resolve-ts/register scripts/export-summaries.ts && prettier --write --log-level silent 'src/**/*.{js,ts,json}'"
"test": "vitest"
},
"exports": {
".": "./src/index.ts",
"./distilled.json": "./src/distilled.json",
"./use-cases.json": "./src/use_cases.json"
".": "./src/index.ts"
},
"peerDependencies": {
"drizzle-orm": "^0.44.0"
"drizzle-orm": "^0.40.0"
},
"dependencies": {
"@sveltejs/mcp-schema": "workspace:^",
@@ -37,19 +27,15 @@
"svelte": "^5.39.2",
"svelte-eslint-parser": "^1.3.2",
"tmcp": "^1.13.0",
"ts-blank-space": "^0.6.2",
"typescript-eslint": "^8.44.0",
"valibot": "^1.1.0",
"vitest": "^3.2.4",
"zimmerframe": "^1.1.4"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.65.0",
"@sveltejs/kit": "^2.42.2",
"@types/eslint-scope": "^8.3.2",
"@types/estree": "^1.0.8",
"@typescript-eslint/types": "^8.44.0",
"commander": "^13.1.0",
"dotenv": "^17.2.3"
"@typescript-eslint/types": "^8.44.0"
}
}

View File

@@ -1,108 +0,0 @@
#!/usr/bin/env node
import 'dotenv/config';
import { readFile, access } from 'node:fs/promises';
import path from 'node:path';
import { fileURLToPath } from 'node:url';
import { Command } from 'commander';
import * as v from 'valibot';
import { summary_data_schema, type SummaryData } from '../src/lib/schemas.ts';
import { export_summaries_to_markdown } from './lib/export-markdown.ts';
interface CliOptions {
type: 'use_cases' | 'distilled' | 'both';
}
const current_filename = fileURLToPath(import.meta.url);
const current_dirname = path.dirname(current_filename);
const program = new Command();
program
.name('export-summaries')
.description('Export summaries from JSON files to individual markdown files')
.version('1.0.0')
.option('-t, --type <type>', 'Type to export: "use_cases", "distilled", or "both"', 'both');
async function read_file_as_string(
file_path: string,
encoding: BufferEncoding = 'utf-8',
): Promise<string> {
const content = await readFile(file_path, encoding);
return v.parse(v.string(), content);
}
async function load_summaries_json(output_path: string): Promise<SummaryData | null> {
try {
await access(output_path);
} catch {
return null;
}
const content = await read_file_as_string(output_path, 'utf-8');
const data = JSON.parse(content);
const validated = v.safeParse(summary_data_schema, data);
if (!validated.success) {
throw new Error(
`File has invalid schema: ${output_path}\n` +
`Validation errors: ${JSON.stringify(validated.issues, null, 2)}`,
);
}
return validated.output;
}
async function export_summaries_for_type(type: 'use_cases' | 'distilled'): Promise<void> {
const json_filename = type === 'distilled' ? 'distilled.json' : 'use_cases.json';
const input_path = path.join(current_dirname, `../src/${json_filename}`);
console.log(`\n📁 Processing ${type.toUpperCase()}...`);
console.log(` Input: ${json_filename}`);
// Load the JSON file
console.log(` 📂 Loading ${json_filename}...`);
const data = await load_summaries_json(input_path);
if (!data) {
console.error(` ❌ Error: Could not load ${json_filename}`);
return;
}
const summaries = data.summaries;
console.log(` ✅ Found ${Object.keys(summaries).length} summaries`);
// Use shared export function
await export_summaries_to_markdown(summaries, type, path.join(current_dirname, '../summaries'));
}
async function main() {
program.parse();
const options = program.opts<CliOptions>();
console.log('🚀 Starting summary export...');
// Validate type option
if (!['use_cases', 'distilled', 'both'].includes(options.type)) {
console.error('❌ Error: --type must be "use_cases", "distilled", or "both"');
process.exit(1);
}
// Export based on type option
if (options.type === 'both') {
await export_summaries_for_type('use_cases');
await export_summaries_for_type('distilled');
} else {
await export_summaries_for_type(options.type);
}
console.log('\n✅ Export complete!');
console.log(
'\n📊 Summary files have been written to:',
path.join(current_dirname, '../summaries/'),
);
}
main().catch((error) => {
console.error('❌ Fatal error:', error);
process.exit(1);
});

View File

@@ -1,447 +0,0 @@
#!/usr/bin/env node
import 'dotenv/config';
import { writeFile, mkdir, readFile, access } from 'node:fs/promises';
import path from 'node:path';
import { fileURLToPath } from 'node:url';
import { Command } from 'commander';
import { get_sections } from '../src/mcp/utils.ts';
import { AnthropicProvider } from '../src/lib/anthropic.ts';
import {
type AnthropicBatchRequest,
type SummaryData,
summary_data_schema,
} from '../src/lib/schemas.ts';
import * as v from 'valibot';
import { DISTILLED_PROMPT, USE_CASES_PROMPT } from '../src/mcp/handlers/tools/prompts.ts';
import { export_summaries_to_markdown } from './lib/export-markdown.ts';
interface CliOptions {
force: boolean;
dryRun: boolean;
debug: boolean;
promptType: 'use-cases' | 'distilled';
}
interface SectionChange {
slug: string;
title: string;
url: string;
change_type: 'new' | 'changed' | 'removed';
}
const current_filename = fileURLToPath(import.meta.url);
const current_dirname = path.dirname(current_filename);
async function read_file_as_string(
file_path: string,
encoding: BufferEncoding = 'utf-8',
): Promise<string> {
const content = await readFile(file_path, encoding);
return v.parse(v.string(), content);
}
const program = new Command();
program
.name('generate-summaries')
.description('Generate use case summaries for Svelte documentation sections')
.version('1.0.0')
.option('-f, --force', 'Force regeneration of all summaries', false)
.option('-d, --dry-run', 'Show what would be changed without making API calls', false)
.option('--debug', 'Debug mode: process only 2 sections', false)
.option(
'-p, --prompt-type <type>',
'Prompt type to use: "use-cases" or "distilled"',
'use-cases',
);
async function fetch_section_content(url: string) {
const response = await fetch(url, { signal: AbortSignal.timeout(30000) });
if (!response.ok) {
throw new Error(`Failed to fetch ${url}: ${response.status} ${response.statusText}`);
}
return await response.text();
}
export async function load_existing_summaries(output_path: string): Promise<SummaryData | null> {
try {
await access(output_path);
} catch {
return null;
}
const content = await read_file_as_string(output_path, 'utf-8');
const data = JSON.parse(content);
const validated = v.safeParse(summary_data_schema, data);
if (!validated.success) {
throw new Error(
`Existing file has invalid schema. Please fix or delete the file at: ${output_path}\n` +
`Validation errors: ${JSON.stringify(validated.issues, null, 2)}`,
);
}
return validated.output;
}
function detect_changes(
current_sections: Array<{ slug: string; title: string; url: string }>,
existing_data: SummaryData | null,
current_content: Map<string, string>,
force: boolean,
): {
to_process: Array<{ slug: string; title: string; url: string }>;
to_remove: string[];
changes: SectionChange[];
} {
if (!existing_data || force) {
// First run or force regeneration
return {
to_process: current_sections,
to_remove: [],
changes: current_sections.map((s) => ({
...s,
change_type: force ? 'changed' : 'new',
})),
};
}
const existing_summaries = existing_data.summaries;
const existing_content = existing_data.content;
const existing_slugs = new Set(Object.keys(existing_summaries));
const current_slugs = new Set(current_sections.map((s) => s.slug));
const sections_to_process: typeof current_sections = [];
const changes: SectionChange[] = [];
// Check for new and changed sections
for (const section of current_sections) {
const content = current_content.get(section.slug);
if (!content) {
throw new Error(`No content found for section: ${section.slug}`);
}
if (!existing_slugs.has(section.slug)) {
// New section
sections_to_process.push(section);
changes.push({ ...section, change_type: 'new' });
} else {
// Existing section - check if content changed
const stored_content = existing_content[section.slug] ?? '';
if (content !== stored_content) {
// Content has changed
sections_to_process.push(section);
changes.push({ ...section, change_type: 'changed' });
}
}
}
// Find removed sections
const removed_slugs: string[] = [];
for (const slug of existing_slugs) {
if (!current_slugs.has(slug)) {
removed_slugs.push(slug);
changes.push({
slug,
title: '<removed>',
url: '',
change_type: 'removed',
});
}
}
return {
to_process: sections_to_process,
to_remove: removed_slugs,
changes,
};
}
async function main() {
program.parse();
const options = program.opts<CliOptions>();
// Allow DEBUG_MODE env var as well
const debug = options.debug || process.env.DEBUG_MODE === '1';
console.log('🚀 Starting use cases generation...');
// Determine output file based on prompt type
const output_filename = options.promptType === 'distilled' ? 'distilled.json' : 'use_cases.json';
const output_path = path.join(current_dirname, `../src/${output_filename}`);
// Select prompt based on prompt type
const selected_prompt = options.promptType === 'distilled' ? DISTILLED_PROMPT : USE_CASES_PROMPT;
// Display mode information
console.log(`📝 PROMPT MODE: ${options.promptType.toUpperCase()}${output_filename}\n`);
if (options.dryRun) {
console.log('🔍 DRY RUN MODE - No API calls will be made\n');
}
if (options.force) {
console.log('⚡ FORCE MODE - Regenerating all summaries\n');
}
if (debug) {
console.log('🐛 DEBUG MODE - Will process only 2 sections\n');
}
// Load existing summaries
console.log('📂 Loading existing summaries...');
const existing_data = await load_existing_summaries(output_path);
if (existing_data) {
console.log(
`✅ Found existing summaries with ${Object.keys(existing_data.summaries).length} entries`,
);
} else {
console.log('📝 No existing summaries found - will process all sections');
}
console.log('📚 Fetching documentation sections...');
const all_sections = await get_sections();
console.log(`Found ${all_sections.length} sections from API`);
// Download content for ALL sections (needed to compute hashes)
console.log('\n📥 Downloading section content...');
const section_content = new Map<string, string>();
for (let i = 0; i < all_sections.length; i++) {
const section = all_sections[i]!;
console.log(` Fetching ${i + 1}/${all_sections.length}: ${section.title}`);
const content = await fetch_section_content(section.url);
section_content.set(section.slug, content);
}
console.log(`✅ Successfully downloaded ${section_content.size} sections`);
// Detect what needs to be processed
console.log('\n🔍 Checking for content changes...');
const { to_process, to_remove, changes } = detect_changes(
all_sections,
existing_data,
section_content,
options.force,
);
// Display changes
console.log('\n📊 Change Summary:');
const new_count = changes.filter((c) => c.change_type === 'new').length;
const changed_count = changes.filter((c) => c.change_type === 'changed').length;
const removed_count = changes.filter((c) => c.change_type === 'removed').length;
console.log(` ✨ New sections: ${new_count}`);
console.log(` 🔄 Changed sections: ${changed_count}`);
console.log(` ❌ Removed sections: ${removed_count}`);
console.log(` 📝 To process: ${to_process.length}`);
if (changes.length > 0) {
console.log('\n📋 Detailed changes:');
for (const change of changes) {
const emoji =
change.change_type === 'new' ? ' ✨' : change.change_type === 'changed' ? ' 🔄' : ' ❌';
console.log(`${emoji} [${change.change_type.toUpperCase()}] ${change.slug}`);
}
}
// Exit early if nothing to do
if (to_process.length === 0 && to_remove.length === 0) {
console.log('\n✅ No changes detected - everything is up to date!');
return;
}
// Debug mode: limit sections
let sections_to_process = to_process;
if (debug) {
console.log('\n🐛 Processing only 2 sections for debugging');
sections_to_process = to_process.slice(0, 2);
}
// Dry run mode: exit before API calls
if (options.dryRun) {
console.log('\n🔍 DRY RUN complete - no changes were made');
console.log(`Would have processed ${sections_to_process.length} sections`);
console.log(`Would have removed ${to_remove.length} sections`);
return;
}
// Process with Anthropic API if we have sections to process
const new_summaries: Record<string, string> = {};
const sections_with_content: Array<{
section: (typeof sections_to_process)[number];
content: string;
index: number;
}> = [];
if (sections_to_process.length === 0) {
console.log('\n📦 Only removing old sections, no API calls needed');
} else {
// Check for API key
const api_key = process.env.ANTHROPIC_API_KEY;
if (!api_key) {
console.error('❌ Error: ANTHROPIC_API_KEY environment variable is required');
console.error('Please set it in packages/mcp-server/.env file or export it:');
console.error('export ANTHROPIC_API_KEY=your_api_key_here');
process.exit(1);
}
// Build sections_with_content from already-downloaded content
console.log('\n📦 Preparing sections for processing...');
for (let i = 0; i < sections_to_process.length; i++) {
const section = sections_to_process[i]!;
const content = section_content.get(section.slug);
if (!content) {
throw new Error(`No content available for ${section.title}`);
}
sections_with_content.push({
section,
content,
index: i,
});
}
console.log(`✅ Prepared ${sections_with_content.length} sections for processing`);
console.log('\n🤖 Initializing Anthropic API...');
const anthropic = new AnthropicProvider('claude-sonnet-4-5-20250929', api_key);
// Prepare batch requests
console.log('📦 Preparing batch requests...');
const batch_requests: AnthropicBatchRequest[] = sections_with_content.map(
({ content, index }) => ({
custom_id: `section-${index}`,
params: {
model: anthropic.get_model_identifier(),
max_tokens: 8192,
messages: [
{
role: 'user',
content:
`<instructions>${selected_prompt}</instructions>` +
`<documentation>${content}</documentation>`,
},
],
temperature: 0,
},
}),
);
// Create and process batch
console.log('🚀 Creating batch job...');
const batch_response = await anthropic.create_batch(batch_requests);
console.log(`✅ Batch created with ID: ${batch_response.id}`);
// Poll for completion
console.log('⏳ Waiting for batch to complete...');
let batch_status = await anthropic.get_batch_status(batch_response.id);
while (batch_status.processing_status === 'in_progress') {
const { succeeded, processing, errored } = batch_status.request_counts;
console.log(
` Progress: ${succeeded} succeeded, ${processing} processing, ${errored} errored`,
);
await new Promise((resolve) => setTimeout(resolve, 5000));
batch_status = await anthropic.get_batch_status(batch_response.id);
}
console.log('✅ Batch processing completed!');
// Get results
if (!batch_status.results_url) {
throw new Error('Batch completed but no results URL available');
}
console.log('📥 Downloading results...');
const results = await anthropic.get_batch_results(batch_status.results_url);
// Process results
console.log('📊 Processing results...');
for (const result of results) {
const index = parseInt(result.custom_id.split('-')[1] ?? '0');
const section_data = sections_with_content.find((s) => s.index === index);
if (!section_data) {
throw new Error(`Could not find section for index ${index}`);
}
const { section } = section_data;
if (result.result.type !== 'succeeded' || !result.result.message) {
const error_msg = result.result.error?.message || 'Failed or no message';
throw new Error(`Failed to generate summary for ${section.title}: ${error_msg}`);
}
const output_content = result.result.message.content[0]?.text;
if (!output_content) {
throw new Error(`No text content in result for ${section.title}`);
}
new_summaries[section.slug] = output_content.trim();
console.log(`${section.title}`);
}
// Merge with existing summaries
console.log('\n📦 Merging results...');
}
// Start with existing summaries or empty object
const merged_summaries: Record<string, string> = existing_data
? { ...existing_data.summaries }
: {};
// Add/update new summaries
Object.assign(merged_summaries, new_summaries);
// Remove deleted sections from summaries
for (const slug of to_remove) {
delete merged_summaries[slug];
console.log(` 🗑️ Removed: ${slug}`);
}
// Write output
console.log('\n💾 Writing results to file...');
const output_dir = path.dirname(output_path);
await mkdir(output_dir, { recursive: true });
const summary_data: SummaryData = {
generated_at: new Date().toISOString(),
model: 'claude-sonnet-4-5-20250929',
total_sections: all_sections.length,
successful_summaries: Object.keys(merged_summaries).length,
summaries: merged_summaries,
content: Object.fromEntries(section_content),
};
await writeFile(output_path, JSON.stringify(summary_data, null, 2), 'utf-8');
// Export summaries to markdown files
console.log('\n📁 Exporting summaries to markdown files...');
const markdown_type = options.promptType === 'distilled' ? 'distilled' : 'use_cases';
const markdown_files_created = await export_summaries_to_markdown(
merged_summaries,
markdown_type,
path.join(current_dirname, '../summaries'),
);
// Print summary
console.log('\n📊 Final Summary:');
console.log(` Total sections in API: ${all_sections.length}`);
console.log(` Sections processed: ${sections_with_content.length}`);
console.log(` New summaries generated: ${Object.keys(new_summaries).length}`);
console.log(` Sections removed: ${to_remove.length}`);
console.log(` Total summaries in file: ${Object.keys(merged_summaries).length}`);
console.log(` Markdown files created: ${markdown_files_created}`);
console.log(`\n✅ Results written to: ${output_path}`);
console.log(
`✅ Markdown files written to: ${path.join(current_dirname, `../summaries/${markdown_type}/`)}`,
);
}
main().catch((error) => {
console.error('❌ Fatal error:', error);
process.exit(1);
});

View File

@@ -1,54 +0,0 @@
import { writeFile, mkdir, rm } from 'node:fs/promises';
import path from 'node:path';
/**
* Export summaries to markdown files in nested directory structure
* @param summaries - Record of slug -> content mappings
* @param type - Type of summaries ('use_cases' or 'distilled')
* @param base_dir - Base directory for summaries (e.g., 'packages/mcp-server/summaries')
* @returns Number of files created
*/
export async function export_summaries_to_markdown(
summaries: Record<string, string>,
type: 'use_cases' | 'distilled',
base_dir: string,
): Promise<number> {
const output_base_dir = path.join(base_dir, type);
const summary_count = Object.keys(summaries).length;
console.log(` 📁 Target: summaries/${type}/`);
console.log(` 📊 Total summaries: ${summary_count}`);
// Clean existing directory for this type
console.log(` 🧹 Cleaning ${type} directory...`);
try {
await rm(output_base_dir, { recursive: true, force: true });
} catch {
// Directory might not exist, that's okay
}
// Create base output directory
await mkdir(output_base_dir, { recursive: true });
let created_count = 0;
// Write each summary to a markdown file
for (const [slug, content] of Object.entries(summaries)) {
const file_path = path.join(output_base_dir, `${slug}.md`);
const file_dir = path.dirname(file_path);
// Create nested directories if needed
await mkdir(file_dir, { recursive: true });
// Write the markdown file
await writeFile(file_path, content, 'utf-8');
created_count++;
if (created_count % 10 === 0) {
console.log(` 📝 Created ${created_count}/${summary_count} files...`);
}
}
console.log(` ✅ Successfully created ${created_count} markdown files`);
return created_count;
}

View File

@@ -1,91 +0,0 @@
#!/usr/bin/env node
import { readFile } from 'node:fs/promises';
import path from 'node:path';
import { fileURLToPath } from 'node:url';
import * as v from 'valibot';
const current_filename = fileURLToPath(import.meta.url);
const current_dirname = path.dirname(current_filename);
const verification_output_schema = v.object({
generated_at: v.string(),
model: v.string(),
total_sections: v.number(),
verified_sections: v.number(),
accurate_count: v.number(),
not_accurate_count: v.number(),
results: v.array(
v.object({
slug: v.string(),
status: v.union([v.literal('ACCURATE'), v.literal('NOT_ACCURATE')]),
reasoning: v.string(),
}),
),
});
async function main() {
const verification_path = path.join(current_dirname, '../src/distilled-verification.json');
console.log('📂 Reading verification results...\n');
let content: string;
try {
content = await readFile(verification_path, 'utf-8');
} catch {
console.error('❌ Error: Could not find distilled-verification.json');
console.error('Please run `pnpm verify-distilled` first to generate the file.');
process.exit(1);
}
const data = JSON.parse(content);
const validated = v.safeParse(verification_output_schema, data);
if (!validated.success) {
console.error('❌ Error: Invalid verification file format');
console.error(JSON.stringify(validated.issues, null, 2));
process.exit(1);
}
const verification_data = validated.output;
// Filter for NOT_ACCURATE results
const not_accurate = verification_data.results.filter((r) => r.status === 'NOT_ACCURATE');
// Print header
console.log('📊 Verification Results Summary');
console.log('═'.repeat(80));
console.log(`Generated: ${new Date(verification_data.generated_at).toLocaleString()}`);
console.log(`Model: ${verification_data.model}`);
console.log(`Total Sections: ${verification_data.total_sections}`);
console.log(`Verified: ${verification_data.verified_sections}`);
console.log(
`✅ Accurate: ${verification_data.accurate_count} (${((verification_data.accurate_count / verification_data.verified_sections) * 100).toFixed(1)}%)`,
);
console.log(
`❌ Not Accurate: ${verification_data.not_accurate_count} (${((verification_data.not_accurate_count / verification_data.verified_sections) * 100).toFixed(1)}%)`,
);
console.log('═'.repeat(80));
if (not_accurate.length === 0) {
console.log('\n🎉 All sections are accurate! No issues found.');
return;
}
// Print all NOT_ACCURATE entries
console.log(`\n❌ NOT ACCURATE SECTIONS (${not_accurate.length}):\n`);
for (let i = 0; i < not_accurate.length; i++) {
const result = not_accurate[i]!;
console.log(`${i + 1}. ${result.slug}`);
console.log(` Reasoning: ${result.reasoning}`);
console.log('');
}
console.log('═'.repeat(80));
console.log(`\nFound ${not_accurate.length} section(s) that need review or regeneration.`);
}
main().catch((error) => {
console.error('❌ Fatal error:', error);
process.exit(1);
});

View File

@@ -1,6 +0,0 @@
{
"extends": "../../../tsconfig.json",
"compilerOptions": {
"allowImportingTsExtensions": true
}
}

View File

@@ -1,292 +0,0 @@
#!/usr/bin/env node
import 'dotenv/config';
import { writeFile, mkdir } from 'node:fs/promises';
import path from 'node:path';
import { fileURLToPath } from 'node:url';
import { AnthropicProvider } from '../src/lib/anthropic.ts';
import type { AnthropicBatchRequest } from '../src/lib/schemas.ts';
import distilled_data from '../src/distilled.json' with { type: 'json' };
import * as v from 'valibot';
interface VerificationResult {
slug: string;
status: 'ACCURATE' | 'NOT_ACCURATE';
reasoning: string;
}
interface VerificationOutput {
generated_at: string;
model: string;
total_sections: number;
verified_sections: number;
accurate_count: number;
not_accurate_count: number;
results: VerificationResult[];
}
const current_filename = fileURLToPath(import.meta.url);
const current_dirname = path.dirname(current_filename);
const verification_output_schema = v.object({
generated_at: v.string(),
model: v.string(),
total_sections: v.number(),
verified_sections: v.number(),
accurate_count: v.number(),
not_accurate_count: v.number(),
results: v.array(
v.object({
slug: v.string(),
status: v.union([v.literal('ACCURATE'), v.literal('NOT_ACCURATE')]),
reasoning: v.string(),
}),
),
});
const VERIFICATION_PROMPT = `You are tasked with verifying the accuracy of a distilled/condensed version of documentation against the original content.
Your task:
1. Read both the ORIGINAL documentation and the DISTILLED version provided below
2. Determine if the distilled version accurately represents the key information from the original
3. Check for any factual errors, misleading statements, or critical omissions
4. Return your verdict as either "ACCURATE" or "NOT_ACCURATE"
Guidelines for determining accuracy:
- ACCURATE: The distilled version correctly captures the essential information, even if shortened
- ACCURATE: Minor formatting changes or reasonable simplifications are acceptable
- ACCURATE: Examples may be condensed as long as the core concept is preserved
- NOT_ACCURATE: Any factual errors or contradictions with the original
- NOT_ACCURATE: Missing critical information that would mislead developers
- NOT_ACCURATE: Incorrect code examples or API usage
You must respond in exactly this format:
STATUS: [ACCURATE or NOT_ACCURATE]
REASONING: [Brief explanation of your decision in one sentence]
Do not include any other text, formatting, or markdown in your response.`;
function parse_verification_response(text: string): {
status: 'ACCURATE' | 'NOT_ACCURATE';
reasoning: string;
} | null {
// Try to extract STATUS and REASONING using regex
const status_match = text.match(/STATUS:\s*(ACCURATE|NOT_ACCURATE)/i);
const reasoning_match = text.match(/REASONING:\s*(.+?)(?:\n|$)/i);
if (status_match && reasoning_match) {
return {
status: status_match[1]!.toUpperCase() as 'ACCURATE' | 'NOT_ACCURATE',
reasoning: reasoning_match[1]!.trim(),
};
}
// Fallback: try to find just "ACCURATE" or "NOT_ACCURATE" anywhere in the response
const accurate_match = text.match(/\b(NOT_ACCURATE|ACCURATE)\b/i);
if (accurate_match) {
// Extract some context as reasoning
const lines = text.split('\n').filter((line) => line.trim());
const reasoning = lines.slice(0, 3).join(' ').slice(0, 200);
return {
status: accurate_match[1]!.toUpperCase() as 'ACCURATE' | 'NOT_ACCURATE',
reasoning: reasoning || 'Could not extract detailed reasoning',
};
}
return null;
}
async function main() {
console.log('🔍 Starting distilled verification...\n');
const output_path = path.join(current_dirname, '../src/distilled-verification.json');
// Load distilled data
console.log('📂 Loading distilled.json...');
const { summaries, content } = distilled_data;
const sections = Object.keys(summaries);
console.log(`Found ${sections.length} sections to verify\n`);
// Check for API key
const api_key = process.env.ANTHROPIC_API_KEY;
if (!api_key) {
console.error('❌ Error: ANTHROPIC_API_KEY environment variable is required');
console.error('Please set it in packages/mcp-server/.env file or export it:');
console.error('export ANTHROPIC_API_KEY=your_api_key_here');
process.exit(1);
}
// Initialize Anthropic API
console.log('🤖 Initializing Anthropic API...');
const anthropic = new AnthropicProvider('claude-sonnet-4-5-20250929', api_key);
// Prepare batch requests
console.log('📦 Preparing batch requests...');
const batch_requests: AnthropicBatchRequest[] = sections.map((slug, index) => {
const original = content[slug] || '';
const distilled = summaries[slug] || '';
return {
custom_id: `verify-${index}`,
params: {
model: anthropic.get_model_identifier(),
max_tokens: 4096,
messages: [
{
role: 'user',
content:
`${VERIFICATION_PROMPT}\n\n` +
`<original>${original}</original>\n\n` +
`<distilled>${distilled}</distilled>`,
},
],
temperature: 0,
},
};
});
// Create and process batch
console.log('🚀 Creating batch job...');
const batch_response = await anthropic.create_batch(batch_requests);
console.log(`✅ Batch created with ID: ${batch_response.id}`);
// Poll for completion
console.log('⏳ Waiting for batch to complete...');
let batch_status = await anthropic.get_batch_status(batch_response.id);
while (batch_status.processing_status === 'in_progress') {
const { succeeded, processing, errored } = batch_status.request_counts;
console.log(` Progress: ${succeeded} succeeded, ${processing} processing, ${errored} errored`);
await new Promise((resolve) => setTimeout(resolve, 5000));
batch_status = await anthropic.get_batch_status(batch_response.id);
}
console.log('✅ Batch processing completed!');
// Get results
if (!batch_status.results_url) {
throw new Error('Batch completed but no results URL available');
}
console.log('📥 Downloading results...');
const results = await anthropic.get_batch_results(batch_status.results_url);
// Process results
console.log('📊 Processing results...');
const verification_results: VerificationResult[] = [];
for (const result of results) {
const index = parseInt(result.custom_id.split('-')[1] ?? '0');
const slug = sections[index];
if (!slug) {
throw new Error(`Could not find slug for index ${index}`);
}
if (result.result.type !== 'succeeded' || !result.result.message) {
const error_msg = result.result.error?.message || 'Failed or no message';
console.error(` ❌ Failed to verify ${slug}: ${error_msg}`);
verification_results.push({
slug,
status: 'NOT_ACCURATE',
reasoning: `Verification failed: ${error_msg}`,
});
continue;
}
const output_content = result.result.message.content[0]?.text;
if (!output_content) {
console.error(` ❌ No text content in result for ${slug}`);
verification_results.push({
slug,
status: 'NOT_ACCURATE',
reasoning: 'No response from verification',
});
continue;
}
// Parse using regex instead of strict JSON parsing
const parsed = parse_verification_response(output_content);
if (!parsed) {
console.error(` ❌ Failed to parse response for ${slug}`);
console.error(` Raw response: ${output_content.slice(0, 200)}...`);
verification_results.push({
slug,
status: 'NOT_ACCURATE',
reasoning: `Failed to parse verification response: ${output_content.slice(0, 100)}`,
});
continue;
}
verification_results.push({
slug,
status: parsed.status,
reasoning: parsed.reasoning,
});
const emoji = parsed.status === 'ACCURATE' ? '✅' : '❌';
console.log(` ${emoji} ${slug}: ${parsed.status}`);
}
// Calculate statistics
const accurate_count = verification_results.filter((r) => r.status === 'ACCURATE').length;
const not_accurate_count = verification_results.filter((r) => r.status === 'NOT_ACCURATE').length;
// Write output
console.log('\n💾 Writing results to file...');
const output_dir = path.dirname(output_path);
await mkdir(output_dir, { recursive: true });
const output_data: VerificationOutput = {
generated_at: new Date().toISOString(),
model: 'claude-sonnet-4-5-20250929',
total_sections: sections.length,
verified_sections: sections.length,
accurate_count,
not_accurate_count,
results: verification_results,
};
// Validate output before writing
const validated = v.safeParse(verification_output_schema, output_data);
if (!validated.success) {
throw new Error(`Output validation failed: ${JSON.stringify(validated.issues, null, 2)}`);
}
await writeFile(output_path, JSON.stringify(output_data, null, 2), 'utf-8');
// Print summary
console.log('\n📊 Verification Summary:');
console.log(` Total sections: ${sections.length}`);
console.log(` Verified sections: ${sections.length}`);
console.log(
` ✅ Accurate: ${accurate_count} (${((accurate_count / sections.length) * 100).toFixed(1)}%)`,
);
console.log(
` ❌ Not Accurate: ${not_accurate_count} (${((not_accurate_count / sections.length) * 100).toFixed(1)}%)`,
);
if (not_accurate_count > 0) {
console.log('\n⚠ Sections with issues (first 10):');
verification_results
.filter((r) => r.status === 'NOT_ACCURATE')
.slice(0, 10)
.forEach((r) => {
console.log(` - ${r.slug}: ${r.reasoning}`);
});
if (not_accurate_count > 10) {
console.log(` ... and ${not_accurate_count - 10} more`);
}
console.log('\n💡 Run `pnpm show-verification-errors` to see all issues');
}
console.log(`\n✅ Results written to: ${output_path}`);
}
main().catch((error) => {
console.error('❌ Fatal error:', error);
process.exit(1);
});

View File

@@ -1,875 +0,0 @@
{
"generated_at": "2025-10-12T22:35:10.647Z",
"model": "claude-sonnet-4-5-20250929",
"total_sections": 173,
"verified_sections": 173,
"accurate_count": 159,
"not_accurate_count": 14,
"results": [
{
"slug": "cli/overview",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures the essential information about the sv CLI tool, its usage with npx/pnpx, and the behavior of using local vs. downloaded versions, with only the acknowledgements section reasonably omitted."
},
{
"slug": "cli/faq",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including commands for each package manager, troubleshooting context, and references to the same GitHub issues, with only formatting changes and reasonable condensation."
},
{
"slug": "cli/sv-create",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information, options, and examples from the original documentation with appropriate condensation and no factual errors or critical omissions."
},
{
"slug": "cli/sv-add",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including usage, options, and add-ons list, with only minor acceptable simplifications in wording and removal of non-critical elements like links and HTML comments."
},
{
"slug": "cli/sv-check",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information, options, and examples from the original documentation with appropriate condensation and no factual errors or critical omissions."
},
{
"slug": "cli/sv-migrate",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including usage, migration types, and their purposes, with only minor formatting simplifications and no factual errors or critical omissions."
},
{
"slug": "cli/devtools-json",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the plugin's purpose, security note, alternatives, usage, and code example, with only minor formatting simplifications that preserve the core content."
},
{
"slug": "cli/drizzle",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including setup commands, features, database options, client options, and Docker configuration while maintaining factual accuracy through reasonable condensation."
},
{
"slug": "cli/eslint",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the tool's purpose, installation command, and key components installed, with only minor simplification of wording."
},
{
"slug": "cli/lucia",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the command, what it provides (SvelteKit + Drizzle auth setup following Lucia), and the demo option, with only minor formatting changes and reasonable simplifications."
},
{
"slug": "cli/mdsvex",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the definition, comparison to MDX, installation command, and configuration details, with only minor simplification of wording."
},
{
"slug": "cli/paraglide",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the library description, installation command, included features, and configuration options, with only minor formatting simplifications that preserve the original meaning."
},
{
"slug": "cli/playwright",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information from the original, with only minor formatting changes and reasonable simplification of the bullet points."
},
{
"slug": "cli/prettier",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the tool description, installation command, and what gets added to the project, with only minor rewording that preserves meaning."
},
{
"slug": "cli/storybook",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the installation command, automatic initialization, framework options, and key features like module mocking and link handling."
},
{
"slug": "cli/sveltekit-adapter",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including usage, adapter options with their purposes, and the example command, with only minor formatting simplifications and no factual errors or critical omissions."
},
{
"slug": "cli/tailwind",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including setup command, installed components, prettier integration, and plugin options, with only minor formatting changes and reasonable simplifications."
},
{
"slug": "cli/vitest",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the framework description, installation command, and the four key outcomes of running the command, with only minor rewording for brevity."
},
{
"slug": "kit/introduction",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential technical information, features, and links from the original, with only the introductory notes and some explanatory prose reasonably condensed."
},
{
"slug": "kit/creating-a-project",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the setup commands, core concepts of pages/routing/rendering, and editor recommendations, with only minor formatting changes and reasonable condensation of explanatory text."
},
{
"slug": "kit/project-types",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information from the original, preserving key concepts, links, and technical details while appropriately condensing explanations and formatting for brevity."
},
{
"slug": "kit/project-structure",
"status": "NOT_ACCURATE",
"reasoning": "The distilled version incorrectly names the file as \"instrumentation.server.js\" when the original clearly states it is \"tracing.server.js\" in the directory structure, though the description section does mention \"instrumentation.server.js\" creating ambiguity that should have been preserved."
},
{
"slug": "kit/web-standards",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the special fetch behavior, API interfaces, code examples, and usage contexts, with only minor formatting simplifications that preserve the original meaning."
},
{
"slug": "kit/routing",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including routing concepts, file types, code examples, and key behaviors, with appropriate condensation and no factual errors or critical omissions."
},
{
"slug": "kit/load",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including load function types, data flow, URL handling, fetch behavior, cookies, headers, parent data access, errors, redirects, streaming, parallel loading, rerunning logic, authentication implications, and getRequestEvent usage, with appropriate code examples preserved."
},
{
"slug": "kit/form-actions",
"status": "ACCURATE",
"reasoning": "The distilled version accurately captures all key concepts, code examples, and important notes from the original documentation, with appropriate condensation and no factual errors or misleading omissions."
},
{
"slug": "kit/page-options",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the five main page options (prerender, entries, ssr, csr, trailingSlash, config), their usage, code examples, and important warnings, with appropriate condensation but no factual errors or critical omissions."
},
{
"slug": "kit/state-management",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information, preserves critical warnings and code examples, maintains accurate technical details, and only condenses explanatory text while keeping all key concepts intact."
},
{
"slug": "kit/remote-functions",
"status": "ACCURATE",
"reasoning": "The distilled version accurately captures all essential information including setup, all four function types (query, form, command, prerender), their usage patterns, validation, and key features like batching, single-flight mutations, and error handling, with no factual errors or critical omissions."
},
{
"slug": "kit/building-your-app",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the two-stage build process, the building flag usage with accurate code example, and preview limitations, with only minor formatting simplifications."
},
{
"slug": "kit/adapters",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the purpose of adapters, the list of official adapters, configuration method with code example, and platform-specific context details, with only minor formatting simplifications that don't alter meaning."
},
{
"slug": "kit/adapter-auto",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the adapter list, best practices, configuration limitations, and extension process, with appropriate simplification and no factual errors."
},
{
"slug": "kit/adapter-node",
"status": "ACCURATE",
"reasoning": "The distilled version accurately captures all essential information including installation, deployment, environment variables, options, graceful shutdown, socket activation, and custom server setup, with appropriate condensation of explanatory text while preserving critical technical details and code examples."
},
{
"slug": "kit/adapter-static",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including installation, configuration, options, and GitHub Pages setup, with appropriate condensation of explanatory text while preserving critical technical details and code examples."
},
{
"slug": "kit/single-page-apps",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including SPA setup, performance warnings, configuration steps, prerendering options, and Apache configuration, with appropriate simplifications and no factual errors."
},
{
"slug": "kit/adapter-cloudflare",
"status": "ACCURATE",
"reasoning": "The distilled version accurately captures all essential information, configuration options, code examples, and key concepts from the original documentation with appropriate condensation and no factual errors or critical omissions."
},
{
"slug": "kit/adapter-cloudflare-workers",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including deprecation notice, installation, configuration, deployment, runtime APIs, testing, and troubleshooting, with appropriate simplifications and no factual errors."
},
{
"slug": "kit/adapter-netlify",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including installation, configuration options, edge functions, Netlify-specific features, and troubleshooting, with only minor formatting simplifications and no factual errors or critical omissions."
},
{
"slug": "kit/adapter-vercel",
"status": "ACCURATE",
"reasoning": "The distilled version accurately captures all essential information, configuration options, warnings, and troubleshooting steps from the original, with appropriate condensation and formatting changes that preserve the core technical content."
},
{
"slug": "kit/writing-adapters",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the API structure, required/optional fields, adapt method tasks, and recommendations, with appropriate condensation and reorganization for clarity."
},
{
"slug": "kit/advanced-routing",
"status": "ACCURATE",
"reasoning": "The distilled version accurately captures all key concepts including rest parameters, optional parameters, matchers, sorting rules, encoding, and advanced layouts with correct code examples and essential notes, though condensed for brevity."
},
{
"slug": "kit/hooks",
"status": "ACCURATE",
"reasoning": "The distilled version accurately captures all key hooks, their purposes, parameters, and code examples while appropriately condensing explanatory text and preserving critical technical details."
},
{
"slug": "kit/errors",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including expected/unexpected errors, error handling, responses, type safety, and code examples, with only minor formatting simplifications that preserve the core concepts."
},
{
"slug": "kit/link-options",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all key information, attribute values, code examples, and important warnings from the original documentation, with appropriate condensation but no factual errors or critical omissions."
},
{
"slug": "kit/service-workers",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including setup, the $service-worker module exports, the complete code example, development considerations, and alternative solutions, with only minor formatting changes and reasonable condensation of explanatory text."
},
{
"slug": "kit/server-only-modules",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the two methods for creating server-only modules, how the protection works, the import chain example, dynamic imports support, and the testing exception, with no factual errors or critical omissions."
},
{
"slug": "kit/snapshots",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the purpose, usage pattern, timing of capture/restore functions, serialization requirements, and the warning about large objects, with only minor formatting simplifications."
},
{
"slug": "kit/shallow-routing",
"status": "NOT_ACCURATE",
"reasoning": "The distilled version incorrectly states that shallow routing allows you to \"Navigate without triggering `load` functions or replacing page components\" when the original clearly states that navigating through history entries \"re-runs any `load` functions and replaces page components as necessary\" - shallow routing creates history entries WITHOUT navigating, not a way to navigate differently."
},
{
"slug": "kit/observability",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including setup, traced components, code examples, and important warnings, with only reasonable condensation of explanatory text."
},
{
"slug": "kit/packaging",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including package.json configuration, TypeScript handling, CLI options, and caveats, with appropriate condensation of examples while preserving technical accuracy."
},
{
"slug": "kit/auth",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the definitions, session vs token tradeoffs, integration points, and Lucia implementation details without any factual errors or critical omissions."
},
{
"slug": "kit/performance",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information, performance tips, and technical details from the original, with appropriate condensation and formatting changes that preserve the core concepts and critical guidance."
},
{
"slug": "kit/icons",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures the key points about CSS-based icons via Iconify and the warning against per-icon Svelte component libraries that slow down Vite, with appropriate links preserved."
},
{
"slug": "kit/images",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including setup, usage patterns, configuration details, and best practices, with appropriate condensation of explanatory text while preserving critical technical details and code examples."
},
{
"slug": "kit/accessibility",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including route announcements, focus management, lang attribute configuration, and further reading resources, with appropriate condensation but no factual errors or critical omissions."
},
{
"slug": "kit/seo",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including SSR defaults, performance considerations, URL normalization, manual setup requirements, and complete AMP implementation steps with accurate code examples, though reasonably condensed."
},
{
"slug": "kit/faq",
"status": "ACCURATE",
"reasoning": "The distilled version accurately captures all essential information, code examples, and key concepts from the original while appropriately condensing explanatory text and maintaining technical accuracy."
},
{
"slug": "kit/integrations",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including vitePreprocess functionality, TypeScript requirements, add-ons list, svelte-preprocess differences, and Vite plugins, with appropriate condensation and no factual errors."
},
{
"slug": "kit/debugging",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including setup steps, code examples, limitations, and references, with only minor formatting simplifications that preserve the core content."
},
{
"slug": "kit/migrating-to-sveltekit-2",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all key breaking changes, code examples, and migration steps from the original documentation, with appropriate simplifications and no factual errors or critical omissions."
},
{
"slug": "kit/migrating",
"status": "ACCURATE",
"reasoning": "The distilled version accurately captures all key migration steps, API changes, file renames, and code examples from the original documentation without introducing factual errors or omitting critical information."
},
{
"slug": "kit/additional-resources",
"status": "ACCURATE",
"reasoning": "The distilled version preserves all key information including FAQ links, example repositories, community resources, and support channels with appropriate guidance about searching first, using reasonable condensation without factual errors or critical omissions."
},
{
"slug": "kit/glossary",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information, key concepts, default behaviors, configuration options, and important warnings from the original documentation without introducing factual errors or misleading statements."
},
{
"slug": "kit/@sveltejs-kit",
"status": "ACCURATE",
"reasoning": "The distilled version accurately captures all essential information from the original documentation, including function signatures, type definitions, important warnings, and version availability notes, with appropriate condensation of verbose descriptions while preserving critical technical details."
},
{
"slug": "kit/@sveltejs-kit-hooks",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the behavior of each option, the complete code example, expected output, and type signature with appropriate simplifications in formatting and structure."
},
{
"slug": "kit/@sveltejs-kit-node-polyfills",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the import path, function purpose, the specific APIs (crypto and File), and the TypeScript definition, with only minor formatting changes."
},
{
"slug": "kit/@sveltejs-kit-node",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including function signatures, parameters, and the version availability note, with only minor formatting changes and reasonable additions of clarifying descriptions."
},
{
"slug": "kit/@sveltejs-kit-vite",
"status": "ACCURATE",
"reasoning": "The distilled version preserves all essential information including the import statement, function description, and TypeScript signature, with only minor formatting changes that don't affect accuracy."
},
{
"slug": "kit/$app-environment",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the import statement, the meaning of each exported constant, their types, and important caveats, with only minor wording simplifications that preserve accuracy."
},
{
"slug": "kit/$app-forms",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including function purposes, parameters, return types, code examples, and the detailed behavior of the enhance function's default and custom callback options."
},
{
"slug": "kit/$app-navigation",
"status": "ACCURATE",
"reasoning": "The distilled version accurately captures all key information, function signatures, and important behavioral details from the original documentation, with appropriate condensation that preserves essential meaning."
},
{
"slug": "kit/$app-paths",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including function signatures, usage examples, and deprecation notices, with only minor formatting simplifications that preserve the core content."
},
{
"slug": "kit/$app-server",
"status": "ACCURATE",
"reasoning": "The distilled version accurately captures all key information including function signatures, version availability, descriptions, and code examples, with only minor formatting simplifications that preserve the essential content."
},
{
"slug": "kit/$app-state",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the three state objects, their properties, usage examples, the critical runes vs legacy reactivity distinction, and server/browser behavior differences, with only minor formatting simplifications."
},
{
"slug": "kit/$app-stores",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including deprecation notices, functionality of each store, server/browser subscription constraints, and type signatures, with only minor formatting simplifications."
},
{
"slug": "kit/$app-types",
"status": "NOT_ACCURATE",
"reasoning": "The LayoutParams type definition incorrectly shows \"RouteParams\" instead of \"LayoutParams\" in the distilled version, which is a factual error copied from the original."
},
{
"slug": "kit/$env-dynamic-private",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the key rules about prefix filtering, client-side restriction, usage example, and the dev/prod behavior note."
},
{
"slug": "kit/$env-dynamic-public",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the public prefix requirement, client-side safety, network payload concern, recommendation to prefer static version, and preserves the accurate code example."
},
{
"slug": "kit/$env-static-private",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the static injection behavior, prefix filtering rules, server-only nature, and best practices, with appropriate simplification and reformatting."
},
{
"slug": "kit/$env-static-public",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the PUBLIC_ prefix requirement, configurability, client-side safety, build-time replacement, and preserves the code example accurately."
},
{
"slug": "kit/$lib",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures the essential information about the $lib import alias, its default location, configurability, and includes the same code examples demonstrating its usage."
},
{
"slug": "kit/$service-worker",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the module availability, each export's type and purpose, development behavior, and configuration references without introducing factual errors or omitting critical details."
},
{
"slug": "kit/configuration",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential configuration options, defaults, code examples, and important notes from the original documentation, with appropriate condensation and no factual errors or critical omissions."
},
{
"slug": "kit/cli",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including Vite CLI commands, svelte-kit sync functionality, and automatic execution, with only minor simplifications that preserve meaning."
},
{
"slug": "kit/types",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including generated types, helper types, setup requirements, $lib aliases, and app.d.ts interfaces, with appropriate code examples and version-specific details preserved."
},
{
"slug": "mcp/overview",
"status": "ACCURATE",
"reasoning": "The distilled version preserves all critical information including setup options, the complete usage prompt, and tool descriptions, with only minor formatting simplifications that don't alter meaning."
},
{
"slug": "mcp/local-setup",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including installation commands, configuration examples for each client, and maintains factual accuracy with appropriate condensation of instructional text."
},
{
"slug": "mcp/remote-setup",
"status": "ACCURATE",
"reasoning": "The distilled version correctly preserves all essential setup instructions, commands, and configuration details for each client while appropriately condensing explanatory text and formatting."
},
{
"slug": "mcp/tools",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all four tools and their essential functions, with only minor formatting changes and reasonable condensation of descriptions."
},
{
"slug": "mcp/resources",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures the essential information about the doc-section resource including URI format, return type, and use case, with only minor formatting changes and reasonable simplification."
},
{
"slug": "mcp/prompts",
"status": "NOT_ACCURATE",
"reasoning": "The distilled version omits critical information about the extensive list of available documentation paths with their specific use cases, which is essential for the LLM to know when to invoke the get_documentation tool with the correct path parameter."
},
{
"slug": "svelte/overview",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures the essential information about Svelte being a compiler-based framework, preserves the complete code example, and accurately notes the key syntax detail about event handlers and SvelteKit usage."
},
{
"slug": "svelte/getting-started",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including setup commands, alternatives, tooling options, and help resources without introducing factual errors or omitting critical details."
},
{
"slug": "svelte/svelte-files",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including component structure, script behaviors, module-level logic, scoping rules, and includes the key code examples, with only minor formatting simplifications and removal of non-critical notes."
},
{
"slug": "svelte/svelte-js-files",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the file types, their behavior, use cases, and the critical limitation about exporting reassigned state."
},
{
"slug": "svelte/what-are-runes",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information about runes including their purpose, syntax, and three key characteristics, with only the etymology note and legacy information reasonably omitted."
},
{
"slug": "svelte/$state",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including key concepts, code examples, gotchas, and the two options for sharing state across modules, with appropriate simplifications and no factual errors."
},
{
"slug": "svelte/$derived",
"status": "ACCURATE",
"reasoning": "The distilled version accurately captures all key concepts including $derived, $derived.by, dependencies, overriding values, reactivity behavior, destructuring, and update propagation with correct code examples and essential details preserved."
},
{
"slug": "svelte/$effect",
"status": "ACCURATE",
"reasoning": "The distilled version accurately captures all key concepts, correctly represents the code examples, maintains critical warnings about when not to use effects, and preserves the essential technical details about lifecycle, dependencies, and the various effect runes."
},
{
"slug": "svelte/$props",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including props usage, fallback values, renaming, rest props, updating behavior with warnings about mutation, type safety examples, and $props.id() functionality, with appropriate condensation of examples while preserving core concepts."
},
{
"slug": "svelte/$bindable",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the bidirectional data flow concept, $bindable syntax, usage examples, fallback values, and the warning about sparing use, with only minor formatting changes."
},
{
"slug": "svelte/$inspect",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including development-only behavior, deep reactivity tracking, the `.with()` method signature, `$inspect.trace()` requirements, and preserves critical details like the first-statement requirement and optional label parameter."
},
{
"slug": "svelte/$host",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures the essential information about the $host rune, preserves the code examples accurately, and adds helpful key points without introducing any factual errors or contradictions."
},
{
"slug": "svelte/basic-markup",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including tags, attributes, props, events, delegation, text expressions, and comments with accurate technical details and no misleading omissions."
},
{
"slug": "svelte/if",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including syntax, examples, and the note about blocks wrapping elements or text, with only minor formatting improvements."
},
{
"slug": "svelte/each",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including syntax, keyed blocks, destructuring, itemless iteration, and else clauses with appropriate examples and explanations."
},
{
"slug": "svelte/key",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including syntax, core behavior (destroy/recreate on change), and both key use cases (component reinstantiation and transition replay) with accurate code examples."
},
{
"slug": "svelte/await",
"status": "NOT_ACCURATE",
"reasoning": "The distilled version incorrectly states that omitting the catch block is a \"shorthand pattern\" when the original shows this requires omitting the initial pending block as well, and it fails to mention that the catch block can be omitted while keeping the pending block."
},
{
"slug": "svelte/snippet",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including syntax, scope rules, component passing methods, TypeScript typing, exporting capabilities, and the key restrictions, with appropriate condensation of examples while preserving core concepts."
},
{
"slug": "svelte/@render",
"status": "ACCURATE",
"reasoning": "The distilled version preserves all key information including syntax, code examples, optional chaining usage, and fallback patterns with only minor formatting changes and reasonable simplifications."
},
{
"slug": "svelte/@html",
"status": "NOT_ACCURATE",
"reasoning": "The distilled version incorrectly shows `article :global` (with a space) instead of `article :global(*)` or the nested syntax shown in the original, which would target different elements than intended."
},
{
"slug": "svelte/@attach",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including basic usage, attachment factories, inline attachments, component passing, reactivity control, and utility functions, with appropriate code examples and key concepts preserved."
},
{
"slug": "svelte/@const",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures the essential information about {@const} tag usage, its purpose, code example, and placement restrictions, with only minor formatting differences."
},
{
"slug": "svelte/@debug",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the core functionality, syntax rules, valid/invalid examples, and the no-arguments behavior, with only minor formatting improvements."
},
{
"slug": "svelte/bind",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including syntax, binding types, version-specific features, and important notes/warnings, with appropriate condensation of examples while preserving core concepts."
},
{
"slug": "svelte/use",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the note about attachments, action syntax, argument usage, the key behavior that actions don't re-run on argument changes, and typing details, with only minor formatting simplifications."
},
{
"slug": "svelte/transition",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including transition behavior, local vs global distinctions, parameters, custom functions with css/tick details, and transition events, with appropriate condensation but no factual errors or critical omissions."
},
{
"slug": "svelte/in-and-out",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures the key concepts of non-bidirectional behavior, simultaneous play of in/out transitions, and restart behavior when aborted, with the same code example preserved."
},
{
"slug": "svelte/animate",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including animation triggers, usage patterns, custom function signatures, and the distinction between css and tick methods, with appropriate simplifications and no factual errors."
},
{
"slug": "svelte/style",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including basic usage, expressions, shorthand form, multiple styles, important modifier, and precedence rules with accurate code examples."
},
{
"slug": "svelte/class",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the two ways to set classes, version-specific features, code examples, and the recommendation to prefer the class attribute over the class: directive."
},
{
"slug": "svelte/await-expressions",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the experimental flag configuration, synchronized updates behavior, concurrency rules, loading state handling, error handling, SSR support, and caveats, with appropriate code examples preserved."
},
{
"slug": "svelte/scoped-styles",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including scoped styles, specificity increases, :where() usage, and scoped keyframes with accurate technical details and preserved code examples."
},
{
"slug": "svelte/global-styles",
"status": "ACCURATE",
"reasoning": "The distilled version preserves all essential information including syntax, examples, and key concepts about global styling and keyframes, with only minor formatting changes and removal of a non-critical note about alternative selector syntax."
},
{
"slug": "svelte/custom-properties",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including syntax, desugaring behavior, SVG handling, var() usage with fallbacks, inheritance, and the CSS selector gotcha, with only minor formatting changes."
},
{
"slug": "svelte/nested-style-elements",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all key information including the one top-level style tag limit, nested style tag behavior, lack of scoping/processing for nested tags, and preserves the illustrative code example."
},
{
"slug": "svelte/svelte-boundary",
"status": "NOT_ACCURATE",
"reasoning": "The distilled version incorrectly states that boundaries only catch errors during \"top-level $effect\" when the original says \"running effects\" more broadly, and it omits the critical note about the playground's built-in boundary behavior for the pending snippet."
},
{
"slug": "svelte/svelte-window",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including syntax, rules, event listener usage, bindable properties with their readonly/writable distinctions, and the important scrolling behavior note."
},
{
"slug": "svelte/svelte-document",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including syntax, usage constraints, event handling, actions support, and the four readonly bindable properties without any factual errors or critical omissions."
},
{
"slug": "svelte/svelte-body",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including syntax, usage, supported features (events and actions), and the critical constraint about top-level placement."
},
{
"slug": "svelte/svelte-head",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including functionality, SSR behavior, placement restrictions, and preserves the code example accurately."
},
{
"slug": "svelte/svelte-element",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including usage, limitations, void element behavior, nullish handling, namespace requirements, and valid tag restrictions without any factual errors or critical omissions."
},
{
"slug": "svelte/svelte-options",
"status": "NOT_ACCURATE",
"reasoning": "The distilled version omits critical information about deprecated Svelte 4 options (immutable and accessors) and removes important reference links to the compiler section, Legacy APIs section, and custom elements component options documentation."
},
{
"slug": "svelte/stores",
"status": "ACCURATE",
"reasoning": "The distilled version accurately captures all essential information including the $ prefix syntax, when to use stores vs runes in Svelte 5, all API methods with correct examples, and the store contract requirements without any factual errors or critical omissions."
},
{
"slug": "svelte/context",
"status": "NOT_ACCURATE",
"reasoning": "The distilled version incorrectly shows `counter.count = 0` in the \"Correct\" example when the original uses `+++counter.count = 0+++` (which appears to be markup indicating emphasis, but the actual code should be `counter.count = 0`), and more critically, it omits the important context about when Parent.svelte renders Child.svelte as part of a children snippet, which is described as \"particularly useful\" in the original."
},
{
"slug": "svelte/lifecycle-hooks",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including lifecycle concepts, API usage, server-side behavior notes, cleanup patterns, the deprecation of beforeUpdate/afterUpdate, and the chat autoscroll example with accurate code."
},
{
"slug": "svelte/imperative-component-api",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including API signatures, key behavioral differences from Svelte 4, return values, and critical notes about effects and flushSync, with only minor formatting improvements."
},
{
"slug": "svelte/testing",
"status": "ACCURATE",
"reasoning": "The distilled version preserves all critical information, code examples, and key concepts from the original while appropriately condensing explanatory text and maintaining technical accuracy."
},
{
"slug": "svelte/typescript",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including TypeScript setup, limitations, configuration requirements, typing patterns, and code examples, with appropriate condensation but no factual errors or critical omissions."
},
{
"slug": "svelte/custom-elements",
"status": "ACCURATE",
"reasoning": "The distilled version accurately captures all essential information including lifecycle behavior, component options, usage patterns, and caveats, with appropriate condensation and preserved code examples."
},
{
"slug": "svelte/v4-migration-guide",
"status": "ACCURATE",
"reasoning": "The distilled version accurately captures all key migration information, requirements, code examples, and breaking changes from the original documentation, with appropriate condensation and formatting that preserves the essential technical details."
},
{
"slug": "svelte/v5-migration-guide",
"status": "ACCURATE",
"reasoning": "The distilled version accurately captures all key migration information, breaking changes, and code examples from the original documentation, with appropriate condensation while preserving critical technical details and warnings."
},
{
"slug": "svelte/faq",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information from the original, with appropriate condensation of explanations while preserving key facts, links, code examples, and critical details like the Svelte Native limitation in Svelte 5."
},
{
"slug": "svelte/svelte",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information, properly marks deprecated features, preserves critical code examples and type signatures, and accurately represents the migration guidance from Svelte 4 to Svelte 5."
},
{
"slug": "svelte/svelte-action",
"status": "NOT_ACCURATE",
"reasoning": "The distilled version incorrectly states \"Use `use:` directive to apply them\" which is not mentioned in the original documentation and could be misleading since the original explicitly states actions have been superseded by attachments."
},
{
"slug": "svelte/svelte-animate",
"status": "ACCURATE",
"reasoning": "The distilled version correctly preserves all key information including the flip function signature, its purpose, the FLIP acronym explanation, and complete interface definitions for AnimationConfig and FlipParams."
},
{
"slug": "svelte/svelte-attachments",
"status": "NOT_ACCURATE",
"reasoning": "The distilled version omits the critical \"Available since 5.29\" version information for createAttachmentKey, which is essential for developers to know compatibility requirements."
},
{
"slug": "svelte/svelte-compiler",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including function signatures, key options with defaults, type definitions, and important notes about deprecations and version changes, with appropriate simplifications that preserve meaning."
},
{
"slug": "svelte/svelte-easing",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the import path, function signature, all available easing functions with their variants, and adds helpful context about the parameter/return value ranges and easing types without introducing any factual errors."
},
{
"slug": "svelte/svelte-events",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures the essential functionality, key benefit, and API usage, with the type signatures reasonably simplified into a single generic form that encompasses all the specific overloads shown in the original."
},
{
"slug": "svelte/svelte-legacy",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all key functions, their purposes, and type signatures while appropriately condensing descriptions and maintaining the deprecated/temporary nature of the module."
},
{
"slug": "svelte/svelte-motion",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including API signatures, key properties, methods, availability dates, deprecation notices, and code examples, with appropriate simplifications that preserve the core concepts."
},
{
"slug": "svelte/svelte-reactivity-window",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the reactive nature, usage examples, all exports, server-side behavior, and critical implementation details like browser differences and requestAnimationFrame updates."
},
{
"slug": "svelte/svelte-reactivity",
"status": "ACCURATE",
"reasoning": "The distilled version accurately captures all key information, including API signatures, critical warnings (SSR/hydration, deep reactivity), and complete code examples, with only minor formatting simplifications."
},
{
"slug": "svelte/svelte-server",
"status": "NOT_ACCURATE",
"reasoning": "The distilled version incorrectly simplifies the type signature by removing the conditional types that make props required when the component has required props (the `{} extends Props` conditional logic and the two different function overloads)."
},
{
"slug": "svelte/svelte-store",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential functions, their signatures, and key type definitions with appropriate simplifications to descriptions while maintaining technical accuracy."
},
{
"slug": "svelte/svelte-transition",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including function signatures, parameters, behavior descriptions, and type definitions, with only minor formatting simplifications and reasonable condensation of explanatory text."
},
{
"slug": "svelte/compiler-errors",
"status": "ACCURATE",
"reasoning": "The distilled version accurately captures all key error messages, their meanings, and critical code examples while appropriately condensing the content without introducing factual errors or misleading information."
},
{
"slug": "svelte/compiler-warnings",
"status": "ACCURATE",
"reasoning": "The distilled version accurately captures all key warnings with their essential information, code examples, and solutions, using appropriate condensation while preserving critical details for developers."
},
{
"slug": "svelte/runtime-errors",
"status": "NOT_ACCURATE",
"reasoning": "The distilled version contains a syntax error in the effect_update_depth_exceeded section with an extra closing brace (`});` appears twice), which would mislead developers trying to understand the code example."
},
{
"slug": "svelte/runtime-warnings",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all key warnings with their essential explanations and code examples, using reasonable condensation while preserving critical technical details and fixes."
},
{
"slug": "svelte/legacy-overview",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures the key information about Svelte 5 changes, the two modes, and the reference to v4 documentation, with only minor simplifications that preserve the essential meaning."
},
{
"slug": "svelte/legacy-let",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the auto-reactive nature of top-level variables, the array methods gotcha, and preserves the code examples accurately, with only minor formatting changes for condensation."
},
{
"slug": "svelte/legacy-reactive-assignments",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including basic usage, topological ordering, dependencies, gotchas, and browser-only code, with appropriate simplifications and no factual errors."
},
{
"slug": "svelte/legacy-export-let",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including prop declaration syntax, default value behavior, the critical difference about undefined values not reverting, component exports, and prop renaming, with appropriate code examples preserved."
},
{
"slug": "svelte/legacy-$$props-and-$$restProps",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the distinction between legacy and runes mode, the definitions of $$props and $$restProps, the complete code example, and the performance warning."
},
{
"slug": "svelte/legacy-on",
"status": "NOT_ACCURATE",
"reasoning": "The distilled version omits the legacy createEventDispatcher implementation details and example usage that are still part of the current documentation, which could mislead developers who need to work with existing code using that pattern."
},
{
"slug": "svelte/legacy-slots",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including basic slots, named slots, fallback content, and passing data to slots, with appropriate code examples and no factual errors or critical omissions."
},
{
"slug": "svelte/legacy-$$slots",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures the essential information about $$slots in legacy mode, preserves the code examples intact, and appropriately notes the runes mode alternative, with only minor formatting changes."
},
{
"slug": "svelte/legacy-svelte-fragment",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures the essential functionality, preserves the complete code examples, and accurately conveys the Svelte 5+ obsolescence note, with only minor acceptable formatting changes."
},
{
"slug": "svelte/legacy-svelte-component",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all key information including the legacy mode behavior, runes mode alternative, and the falsy condition, with appropriate reorganization for clarity."
},
{
"slug": "svelte/legacy-svelte-self",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including the recursive functionality, the requirement to prevent infinite loops, the code example, and the obsolescence note with the self-import alternative."
},
{
"slug": "svelte/legacy-component-api",
"status": "ACCURATE",
"reasoning": "The distilled version correctly captures all essential information including API methods, options tables, key behaviors (async vs sync updates), and Svelte 5 migration notes, with appropriate condensation of explanatory text while preserving critical technical details."
}
]
}

File diff suppressed because one or more lines are too long

View File

@@ -1,172 +0,0 @@
import { Anthropic } from '@anthropic-ai/sdk';
import type { Model } from '@anthropic-ai/sdk/resources/messages/messages.js';
import * as v from 'valibot';
import {
anthropic_batch_response_schema,
anthropic_batch_result_schema,
type AnthropicBatchRequest,
} from './schemas.js';
export class AnthropicProvider {
private client: Anthropic;
private modelId: Model;
private baseUrl: string;
private apiKey: string;
name = 'Anthropic';
constructor(model_id: Model, api_key: string) {
if (!api_key) {
throw new Error('ANTHROPIC_API_KEY is required');
}
this.apiKey = api_key;
this.client = new Anthropic({ apiKey: api_key, timeout: 1800000 });
this.modelId = model_id;
this.baseUrl = 'https://api.anthropic.com/v1';
}
get_client(): Anthropic {
return this.client;
}
get_model_identifier(): Model {
return this.modelId;
}
async create_batch(requests: AnthropicBatchRequest[]) {
try {
const response = await fetch(`${this.baseUrl}/messages/batches`, {
method: 'POST',
headers: {
'x-api-key': this.apiKey,
'anthropic-version': '2023-06-01',
'content-type': 'application/json',
},
body: JSON.stringify({ requests }),
});
if (!response.ok) {
const error_text = await response.text();
throw new Error(
`Failed to create batch: ${response.status} ${response.statusText} - ${error_text}`,
);
}
const json_data = await response.json();
const validated_response = v.safeParse(anthropic_batch_response_schema, json_data);
if (!validated_response.success) {
throw new Error(
`Invalid batch response from Anthropic API: ${JSON.stringify(validated_response.issues)}`,
);
}
return validated_response.output;
} catch (error) {
console.error('Error creating batch with Anthropic:', error);
throw new Error(
`Failed to create batch: ${error instanceof Error ? error.message : String(error)}`,
);
}
}
async get_batch_status(batch_id: string, max_retries = 10, retry_delay = 30000) {
let retry_count = 0;
while (retry_count <= max_retries) {
try {
const response = await fetch(`${this.baseUrl}/messages/batches/${batch_id}`, {
method: 'GET',
headers: {
'x-api-key': this.apiKey,
'anthropic-version': '2023-06-01',
},
});
if (!response.ok) {
const error_text = await response.text();
throw new Error(
`Failed to get batch status: ${response.status} ${response.statusText} - ${error_text}`,
);
}
const json_data = await response.json();
const validated_response = v.safeParse(anthropic_batch_response_schema, json_data);
if (!validated_response.success) {
throw new Error(
`Invalid batch status response from Anthropic API: ${JSON.stringify(validated_response.issues)}`,
);
}
return validated_response.output;
} catch (error) {
retry_count++;
if (retry_count > max_retries) {
console.error(
`Error getting batch status for ${batch_id} after ${max_retries} retries:`,
error,
);
throw new Error(
`Failed to get batch status after ${max_retries} retries: ${
error instanceof Error ? error.message : String(error)
}`,
);
}
console.warn(
`Error getting batch status for ${batch_id} (attempt ${retry_count}/${max_retries}):`,
error,
);
console.log(`Retrying in ${retry_delay / 1000} seconds...`);
await new Promise((resolve) => setTimeout(resolve, retry_delay));
}
}
// This should never be reached due to the throw in the catch block, but TypeScript needs a return
throw new Error(`Failed to get batch status for ${batch_id} after ${max_retries} retries`);
}
async get_batch_results(results_url: string) {
try {
const response = await fetch(results_url, {
method: 'GET',
headers: {
'x-api-key': this.apiKey,
'anthropic-version': '2023-06-01',
},
});
if (!response.ok) {
const error_text = await response.text();
throw new Error(
`Failed to get batch results: ${response.status} ${response.statusText} - ${error_text}`,
);
}
const text = await response.text();
// Parse JSONL format (one JSON object per line)
const parsed_results = text
.split('\n')
.filter((line) => line.trim())
.map((line) => JSON.parse(line));
// Validate all results
const validated_results = v.safeParse(v.array(anthropic_batch_result_schema), parsed_results);
if (!validated_results.success) {
throw new Error(
`Invalid batch results from Anthropic API: ${JSON.stringify(validated_results.issues)}`,
);
}
return validated_results.output;
} catch (error) {
console.error(`Error getting batch results:`, error);
throw new Error(
`Failed to get batch results: ${error instanceof Error ? error.message : String(error)}`,
);
}
}
}

View File

@@ -1,106 +0,0 @@
import * as v from 'valibot';
export const documentation_sections_schema = v.record(
v.string(),
v.object({
metadata: v.object({
title: v.string(),
use_cases: v.optional(v.string()),
}),
slug: v.string(),
}),
);
// Valibot schemas for Batch API
export const summary_data_schema = v.object({
generated_at: v.string(),
model: v.string(),
total_sections: v.number(),
successful_summaries: v.number(),
summaries: v.record(v.string(), v.string()),
content: v.record(v.string(), v.string()),
});
export const anthropic_batch_request_schema = v.object({
custom_id: v.string(),
params: v.object({
model: v.string(),
max_tokens: v.number(),
messages: v.array(
v.object({
role: v.union([v.literal('user'), v.literal('assistant')]),
content: v.union([
v.string(),
v.array(
v.object({
type: v.string(),
text: v.string(),
}),
),
]),
}),
),
}),
});
export const anthropic_batch_response_schema = v.object({
id: v.string(),
type: v.string(),
processing_status: v.union([v.literal('in_progress'), v.literal('ended')]),
request_counts: v.object({
processing: v.number(),
succeeded: v.number(),
errored: v.number(),
canceled: v.number(),
expired: v.number(),
}),
ended_at: v.nullable(v.string()),
created_at: v.string(),
expires_at: v.string(),
cancel_initiated_at: v.nullable(v.string()),
results_url: v.nullable(v.string()),
});
export const anthropic_batch_result_schema = v.object({
custom_id: v.string(),
result: v.object({
type: v.union([
v.literal('succeeded'),
v.literal('errored'),
v.literal('canceled'),
v.literal('expired'),
]),
message: v.optional(
v.object({
id: v.string(),
type: v.string(),
role: v.string(),
model: v.string(),
content: v.array(
v.object({
type: v.string(),
text: v.string(),
}),
),
stop_reason: v.string(),
stop_sequence: v.nullable(v.string()),
usage: v.object({
input_tokens: v.number(),
output_tokens: v.number(),
}),
}),
),
error: v.optional(
v.object({
type: v.string(),
message: v.string(),
}),
),
}),
});
// Export inferred types
export type SummaryData = v.InferOutput<typeof summary_data_schema>;
export type AnthropicBatchRequest = v.InferOutput<typeof anthropic_batch_request_schema>;
export type AnthropicBatchResponse = v.InferOutput<typeof anthropic_batch_response_schema>;
export type AnthropicBatchResult = v.InferOutput<typeof anthropic_batch_result_schema>;

View File

@@ -10,338 +10,279 @@ function run_autofixers_on_code(code: string, desired_svelte_version = 5) {
return content;
}
function with_possible_inits(title: string, fn: (args: { init: string }) => void) {
describe.each([
{ init: '$state' },
{ init: '$state.raw' },
{ init: '$derived' },
{ init: '$derived.by' },
])(title, fn);
}
describe('add_autofixers_issues', () => {
describe('assign_in_effect', () => {
with_possible_inits('($init)', ({ init }) => {
it(`should add suggestions when assigning to a stateful variable inside an effect`, () => {
const content = run_autofixers_on_code(`
<script>
const count = ${init}(0);
$effect(() => {
count = 43;
});
</script>`);
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
'The stateful variable "count" is assigned inside an $effect which is generally consider a malpractice. Consider using $derived if possible.',
);
});
it(`should add a suggestion for each variable assigned within an effect`, () => {
const content = run_autofixers_on_code(`
<script>
const count = $state(0);
const count2 = $state(0);
$effect(() => {
count = 43;
count2 = 44;
});
</script>`);
expect(content.suggestions.length).toBeGreaterThanOrEqual(2);
expect(content.suggestions).toContain(
'The stateful variable "count" is assigned inside an $effect which is generally consider a malpractice. Consider using $derived if possible.',
);
expect(content.suggestions).toContain(
'The stateful variable "count2" is assigned inside an $effect which is generally consider a malpractice. Consider using $derived if possible.',
);
});
it(`should not add a suggestion for variables that are not assigned within an effect`, () => {
const content = run_autofixers_on_code(`
<script>
const count = ${init}(0);
</script>
<button onclick={() => count = 43}>Increment</button>
`);
expect(content.suggestions).not.toContain(
'The stateful variable "count" is assigned inside an $effect which is generally consider a malpractice. Consider using $derived if possible.',
);
});
it("should not add a suggestions for variables that are assigned within an effect but aren't stateful", () => {
const content = run_autofixers_on_code(`
<script>
const count = 0;
$effect(() => {
count = 43;
});
</script>`);
expect(content.suggestions).not.toContain(
'The stateful variable "count" is assigned inside an $effect which is generally consider a malpractice. Consider using $derived if possible.',
);
});
it(`should add a suggestion for variables that are assigned within an effect with an update`, () => {
const content = run_autofixers_on_code(`
<script>
let count = ${init}(0);
$effect(() => {
count++;
});
</script>
`);
expect(content.suggestions).toContain(
'The stateful variable "count" is assigned inside an $effect which is generally consider a malpractice. Consider using $derived if possible.',
);
});
it(`should add a suggestion for variables that are mutated within an effect`, () => {
const content = run_autofixers_on_code(`
<script>
let count = ${init}({ value: 0 });
$effect(() => {
count.value = 42;
});
</script>
`);
expect(content.suggestions).toContain(
'The stateful variable "count" is assigned inside an $effect which is generally consider a malpractice. Consider using $derived if possible.',
);
});
it(`should add a suggestion for variables that are mutated within an effect.pre`, () => {
const content = run_autofixers_on_code(`
<script>
let count = ${init}({ value: 0 });
$effect.pre(() => {
count.value = 42;
});
</script>
`);
expect(content.suggestions).toContain(
'The stateful variable "count" is assigned inside an $effect which is generally consider a malpractice. Consider using $derived if possible.',
);
});
});
it('should add a suggestion when calling a function inside an effect', () => {
it(`should add suggestions when assigning to a stateful variable inside an effect`, () => {
const content = run_autofixers_on_code(`
<script>
import { fetch_data } from './data.js';
const count = $state(0);
$effect(() => {
fetch_data();
count = 43;
});
</script>`);
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
`You are calling the function \`fetch_data\` inside an $effect. Please check if the function is reassigning a stateful variable because that's considered malpractice and check if it could use \`$derived\` instead. Ignore this suggestion if you are sure this function is not assigning any stateful variable or if you can't check if it does.`,
'The stateful variable "count" is assigned inside an $effect which is generally consider a malpractice. Consider using $derived if possible.',
);
});
it('should add a suggestion when calling a function inside an effect (with non identifier callee)', () => {
it(`should add a suggestion for each variable assigned within an effect`, () => {
const content = run_autofixers_on_code(`
<script>
import { fetch_data } from './data.js';
const count = $state(0);
const count2 = $state(0);
$effect(() => {
fetch_data.fetch();
count = 43;
count2 = 44;
});
</script>`);
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions.length).toBeGreaterThanOrEqual(2);
expect(content.suggestions).toContain(
`You are calling a function inside an $effect. Please check if the function is reassigning a stateful variable because that's considered malpractice and check if it could use \`$derived\` instead. Ignore this suggestion if you are sure this function is not assigning any stateful variable or if you can't check if it does.`,
'The stateful variable "count" is assigned inside an $effect which is generally consider a malpractice. Consider using $derived if possible.',
);
expect(content.suggestions).toContain(
'The stateful variable "count2" is assigned inside an $effect which is generally consider a malpractice. Consider using $derived if possible.',
);
});
it(`should not add a suggestion for variables that are not assigned within an effect`, () => {
const content = run_autofixers_on_code(`
<script>
const count = $state(0);
</script>
<button onclick={() => count = 43}>Increment</button>
`);
expect(content.suggestions).not.toContain(
'The stateful variable "count" is assigned inside an $effect which is generally consider a malpractice. Consider using $derived if possible.',
);
});
it("should not add a suggestions for variables that are assigned within an effect but aren't stateful", () => {
const content = run_autofixers_on_code(`
<script>
const count = 0;
$effect(() => {
count = 43;
});
</script>`);
expect(content.suggestions).not.toContain(
'The stateful variable "count" is assigned inside an $effect which is generally consider a malpractice. Consider using $derived if possible.',
);
});
it(`should add a suggestion for variables that are assigned within an effect with an update`, () => {
const content = run_autofixers_on_code(`
<script>
let count = $state(0);
$effect(() => {
count++;
});
</script>
`);
expect(content.suggestions).toContain(
'The stateful variable "count" is assigned inside an $effect which is generally consider a malpractice. Consider using $derived if possible.',
);
});
it(`should add a suggestion for variables that are mutated within an effect`, () => {
const content = run_autofixers_on_code(`
<script>
let count = $state({ value: 0 });
$effect(() => {
count.value = 42;
});
</script>
`);
expect(content.suggestions).toContain(
'The stateful variable "count" is assigned inside an $effect which is generally consider a malpractice. Consider using $derived if possible.',
);
});
});
with_possible_inits('($init)', ({ init }) => {
describe.each([{ method: 'set' }, { method: 'update' }])(
'wrong_property_access_state ($method)',
({ method }) => {
it(`should add suggestions when using .${method}() on a stateful variable with a literal init`, () => {
const content = run_autofixers_on_code(`
describe.each([{ method: 'set' }, { method: 'update' }])(
'wrong_property_access_state ($method)',
({ method }) => {
it(`should add suggestions when using .${method}() on a stateful variable with a literal init`, () => {
const content = run_autofixers_on_code(`
<script>
const count = ${init}(0);
const count = $state(0);
function update_count() {
count.${method}(43);
}
</script>`);
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
`You are trying to update the stateful variable "count" using "${method}". stateful variables should be updated with a normal assignment/mutation, do not use methods to update them.`,
);
});
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
`You are trying to update the stateful variable "count" using "${method}". stateful variables should be updated with a normal assignment/mutation, do not use methods to update them.`,
);
});
it(`should add suggestions when using .${method}() on a stateful variable with an array init`, () => {
const content = run_autofixers_on_code(`
it(`should add suggestions when using .${method}() on a stateful variable with an array init`, () => {
const content = run_autofixers_on_code(`
<script>
const count = ${init}([0]);
const count = $state([0]);
function update_count() {
count.${method}([1]);
}
</script>`);
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
`You are trying to update the stateful variable "count" using "${method}". stateful variables should be updated with a normal assignment/mutation, do not use methods to update them.`,
);
});
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
`You are trying to update the stateful variable "count" using "${method}". stateful variables should be updated with a normal assignment/mutation, do not use methods to update them.`,
);
});
it(`should add suggestions when using .${method}() on a stateful variable with conditional if it's not sure if the method could actually be present on the variable (${init}({}))`, () => {
const content = run_autofixers_on_code(`
it(`should add suggestions when using .${method}() on a stateful variable with conditional if it's not sure if the method could actually be present on the variable ($state({}))`, () => {
const content = run_autofixers_on_code(`
<script>
const count = ${init}({ value: 0 });
const count = $state({ value: 0 });
function update_count() {
count.${method}({ value: 43 });
}
</script>`);
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
`You are trying to update the stateful variable "count" using "${method}". stateful variables should be updated with a normal assignment/mutation, do not use methods to update them. However I can't verify if "count" is a state variable of an object or a class with a "${method}" method on it. Please verify that before updating the code to use a normal assignment`,
);
});
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
`You are trying to update the stateful variable "count" using "${method}". stateful variables should be updated with a normal assignment/mutation, do not use methods to update them. However I can't verify if "count" is a state variable of an object or a class with a "${method}" method on it. Please verify that before updating the code to use a normal assignment`,
);
});
it(`should add suggestions when using .${method}() on a stateful variable with conditional if it's not sure if the method could actually be present on the variable (${init}(new Class()))`, () => {
const content = run_autofixers_on_code(`
it(`should add suggestions when using .${method}() on a stateful variable with conditional if it's not sure if the method could actually be present on the variable ($state(new Class()))`, () => {
const content = run_autofixers_on_code(`
<script>
const count = ${init}(new Class());
const count = $state(new Class());
function update_count() {
count.${method}(new Class());
}
</script>`);
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
`You are trying to update the stateful variable "count" using "${method}". stateful variables should be updated with a normal assignment/mutation, do not use methods to update them. However I can't verify if "count" is a state variable of an object or a class with a "${method}" method on it. Please verify that before updating the code to use a normal assignment`,
);
});
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
`You are trying to update the stateful variable "count" using "${method}". stateful variables should be updated with a normal assignment/mutation, do not use methods to update them. However I can't verify if "count" is a state variable of an object or a class with a "${method}" method on it. Please verify that before updating the code to use a normal assignment`,
);
});
it(`should add suggestions when using .${method}() on a stateful variable with conditional if it's not sure if the method could actually be present on the variable (${init}(variable_name))`, () => {
const content = run_autofixers_on_code(`
it(`should add suggestions when using .${method}() on a stateful variable with conditional if it's not sure if the method could actually be present on the variable ($state(variable_name))`, () => {
const content = run_autofixers_on_code(`
<script>
const { init } = $props();
const count = ${init}(init);
const count = $state(init);
function update_count() {
count.${method}(43);
}
</script>`);
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
`You are trying to update the stateful variable "count" using "${method}". stateful variables should be updated with a normal assignment/mutation, do not use methods to update them. However I can't verify if "count" is a state variable of an object or a class with a "${method}" method on it. Please verify that before updating the code to use a normal assignment`,
);
});
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
`You are trying to update the stateful variable "count" using "${method}". stateful variables should be updated with a normal assignment/mutation, do not use methods to update them. However I can't verify if "count" is a state variable of an object or a class with a "${method}" method on it. Please verify that before updating the code to use a normal assignment`,
);
});
it(`should not add suggestions when using .${method} on a stateful variable if it's not a method call`, () => {
const content = run_autofixers_on_code(`
it(`should not add suggestions when using .${method} on a stateful variable if it's not a method call`, () => {
const content = run_autofixers_on_code(`
<script>
const count = ${init}({});
const count = $state({});
function update_count() {
console.log(count.${method});
}
</script>`);
expect(content.suggestions).not.toContain(
`You are trying to update the stateful variable "count" using "${method}". stateful variables should be updated with a normal assignment/mutation, do not use methods to update them. However I can't verify if "count" is a state variable of an object or a class with a "${method}" method on it. Please verify that before updating the code to use a normal assignment`,
);
});
},
);
expect(content.suggestions).not.toContain(
`You are trying to update the stateful variable "count" using "${method}". stateful variables should be updated with a normal assignment/mutation, do not use methods to update them. However I can't verify if "count" is a state variable of an object or a class with a "${method}" method on it. Please verify that before updating the code to use a normal assignment`,
);
});
},
);
describe.each([{ property: '$' }])(
'wrong_property_access_state property ($property)',
async ({ property }) => {
it(`should add suggestions when reading .${property} on a stateful variable with a literal init`, () => {
const content = run_autofixers_on_code(`
describe.each([{ property: '$' }])(
'wrong_property_access_state property ($property)',
async ({ property }) => {
it(`should add suggestions when reading .${property} on a stateful variable with a literal init`, () => {
const content = run_autofixers_on_code(`
<script>
const count = ${init}(0);
const count = $state(0);
function read_count() {
count.${property};
}
</script>`);
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
`You are trying to read the stateful variable "count" using "${property}". stateful variables should be read just by accessing them like normal variable, do not use properties to read them.`,
);
});
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
`You are trying to read the stateful variable "count" using "${property}". stateful variables should be read just by accessing them like normal variable, do not use properties to read them.`,
);
});
it(`should add suggestions when reading .${property} on a stateful variable with an array init`, () => {
const content = run_autofixers_on_code(`
it(`should add suggestions when reading .${property} on a stateful variable with an array init`, () => {
const content = run_autofixers_on_code(`
<script>
const count = ${init}([1]);
const count = $state([1]);
function read_count() {
count.${property};
}
</script>`);
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
`You are trying to read the stateful variable "count" using "${property}". stateful variables should be read just by accessing them like normal variable, do not use properties to read them.`,
);
});
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
`You are trying to read the stateful variable "count" using "${property}". stateful variables should be read just by accessing them like normal variable, do not use properties to read them.`,
);
});
it(`should add suggestions when reading .${property} on a stateful variable with conditional if it's not sure if the property could actually be present on the variable (${init}({}))`, () => {
const content = run_autofixers_on_code(`
it(`should add suggestions when reading .${property} on a stateful variable with conditional if it's not sure if the property could actually be present on the variable ($state({}))`, () => {
const content = run_autofixers_on_code(`
<script>
const count = ${init}({ value: 0 });
const count = $state({ value: 0 });
function read_count() {
count.${property};
}
</script>`);
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
`You are trying to read the stateful variable "count" using "${property}". stateful variables should be read just by accessing them like normal variable, do not use properties to read them. However I can't verify if "count" is a state variable of an object or a class with a "${property}" property on it. Please verify that before updating the code to use a normal access`,
);
});
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
`You are trying to read the stateful variable "count" using "${property}". stateful variables should be read just by accessing them like normal variable, do not use properties to read them. However I can't verify if "count" is a state variable of an object or a class with a "${property}" property on it. Please verify that before updating the code to use a normal access`,
);
});
it(`should add suggestions when reading .${property} on a stateful variable with conditional if it's not sure if the property could actually be present on the variable (${init}(new Class()))`, () => {
const content = run_autofixers_on_code(`
it(`should add suggestions when reading .${property} on a stateful variable with conditional if it's not sure if the property could actually be present on the variable ($state(new Class()))`, () => {
const content = run_autofixers_on_code(`
<script>
const count = ${init}(new Class());
const count = $state(new Class());
function read_count() {
count.${property};
}
</script>`);
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
`You are trying to read the stateful variable "count" using "${property}". stateful variables should be read just by accessing them like normal variable, do not use properties to read them. However I can't verify if "count" is a state variable of an object or a class with a "${property}" property on it. Please verify that before updating the code to use a normal access`,
);
});
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
`You are trying to read the stateful variable "count" using "${property}". stateful variables should be read just by accessing them like normal variable, do not use properties to read them. However I can't verify if "count" is a state variable of an object or a class with a "${property}" property on it. Please verify that before updating the code to use a normal access`,
);
});
it(`should add suggestions when reading .${property} on a stateful variable with conditional if it's not sure if the property could actually be present on the variable (${init}(variable_name))`, () => {
const content = run_autofixers_on_code(`
it(`should add suggestions when reading .${property} on a stateful variable with conditional if it's not sure if the property could actually be present on the variable ($state(variable_name))`, () => {
const content = run_autofixers_on_code(`
<script>
const { init } = $props();
const count = ${init}(init);
const count = $state(init);
function read_count() {
count.${property};
}
</script>`);
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
`You are trying to read the stateful variable "count" using "${property}". stateful variables should be read just by accessing them like normal variable, do not use properties to read them. However I can't verify if "count" is a state variable of an object or a class with a "${property}" property on it. Please verify that before updating the code to use a normal access`,
);
});
},
);
});
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
`You are trying to read the stateful variable "count" using "${property}". stateful variables should be read just by accessing them like normal variable, do not use properties to read them. However I can't verify if "count" is a state variable of an object or a class with a "${property}" property on it. Please verify that before updating the code to use a normal access`,
);
});
},
);
describe('imported_runes', () => {
describe.each([{ source: 'svelte' }, { source: 'svelte/runes' }])(
@@ -412,19 +353,6 @@ describe('add_autofixers_issues', () => {
});
},
);
describe.each(dollarless_runes)('importing $rune from external lib', ({ rune }) => {
it(`should not add suggestions when importing from packages that are not svelte`, () => {
const content = run_autofixers_on_code(`
<script>
import { ${rune} } from 'svelte-something-something';
</script>`);
expect(content.suggestions).not.toContain(
`You are importing "${rune}" from "svelte-something-something". This is not necessary, all runes are globally available. Please remove this import and use "$${rune}" directly.`,
);
});
});
});
describe('derived_with_function', () => {
@@ -527,229 +455,4 @@ describe('add_autofixers_issues', () => {
);
});
});
describe('suggest_attachments', () => {
describe('bind:this', () => {
it('should add suggestions when using bind:this on an element', () => {
const content = run_autofixers_on_code(`
<script>
let a = $state();
</script>
<a bind:this={a} />`);
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
'The usage of `bind:this` can often be replaced with an easier to read `action` or even better an `attachment`. Consider using the latter if possible.',
);
});
it('should not add suggestions when using bind:this on a component', () => {
const content = run_autofixers_on_code(`
<script>
import Child from './Child.svelte';
let a = $state();
</script>
<Child bind:this={a} />`);
expect(content.suggestions).not.toContain(
'The usage of `bind:this` can often be replaced with an easier to read `action` or even better an `attachment`. Consider using the latter if possible.',
);
});
it('should not add suggestions when using bind:this on a component nested in an element', () => {
const content = run_autofixers_on_code(`
<script>
import Child from './Child.svelte';
let a = $state();
</script>
<div>
<Child bind:this={a} />
</div>`);
expect(content.suggestions).not.toContain(
'The usage of `bind:this` can often be replaced with an easier to read `action` or even better an `attachment`. Consider using the latter if possible.',
);
});
it('should add suggestions but not suggest attachments when using bind:this on an element and the desired svelte version is 4', () => {
const content = run_autofixers_on_code(
`
<script>
let a;
</script>
<a bind:this={a} />`,
4,
);
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
'The usage of `bind:this` can often be replaced with an easier to read `action`. Consider using the latter if possible.',
);
});
});
describe('use:', () => {
it('should add suggestions when using use: on an element and the action is declared as a function', () => {
const content = run_autofixers_on_code(
`<script>
function my_action(node) {
// do something with the node
}
</script>
<a use:my_action />`,
);
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
'Consider using an `attachment` instead of an `action` for "my_action".',
);
});
it('should add suggestions when using use: on an element and the action is declared as a variable', () => {
const content = run_autofixers_on_code(
`<script>
const my_action = (node) => {
// do something with the node
}
</script>
<a use:my_action />`,
);
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
'Consider using an `attachment` instead of an `action` for "my_action".',
);
});
it('should add suggestions when using use: on an element and the action is declared as an object', () => {
const content = run_autofixers_on_code(
`<script>
const my_action = {
action: (node) => {
// do something with the node
}
};
</script>
<a use:my_action.action />`,
);
expect(content.suggestions.length).toBeGreaterThanOrEqual(1);
expect(content.suggestions).toContain(
'Consider using an `attachment` instead of an `action` for "my_action".',
);
});
it('should not add suggestions when using use: on an element and the desired svelte version is 4', () => {
const content = run_autofixers_on_code(
`<script>
function my_action(node) {
// do something with the node
}
</script>
<a use:my_action />`,
4,
);
expect(content.suggestions).not.toContain(
'Consider using an `attachment` instead of an `action` for "my_action".',
);
});
it('should not add suggestions when using use: on an element and the action comes from an import', () => {
const content = run_autofixers_on_code(
`<script>
import { my_action } from './actions.js';
</script>
<a use:my_action />`,
);
expect(content.suggestions).not.toContain(
'Consider using an `attachment` instead of an `action` for "my_action".',
);
});
it('should not add suggestions when using use: on an element and the action comes from the props', () => {
const content = run_autofixers_on_code(
`<script>
const { my_action } = $props();
</script>
<a use:my_action />`,
);
expect(content.suggestions).not.toContain(
'Consider using an `attachment` instead of an `action` for "my_action".',
);
});
it('should not add suggestions when using use: on an element and the action comes from a global variable', () => {
const content = run_autofixers_on_code(`<a use:my_action />`);
expect(content.suggestions).not.toContain(
'Consider using an `attachment` instead of an `action` for "my_action".',
);
});
});
});
describe('read_state_with_dollar', () => {
with_possible_inits('($init)', ({ init }) => {
it(`should add an issue when reading a stateful variable initialized with ${init} like if it was a store`, () => {
const content = run_autofixers_on_code(`<script>
let x = ${init}(()=> 43);
$x;
</script>
`);
expect(content.issues).toContain(
`You are reading the stateful variable "$x" with a "$" prefix. Stateful variables are not stores and should be read without the "$". Please read it as a normal variable "x"`,
);
});
});
it(`should not add an issue when reading an imported variable like if it was a store`, () => {
const content = run_autofixers_on_code(`<script>
import { x } from "./my-stores.ts";
$x;
</script>
`);
expect(content.issues).not.toContain(
`You are reading the stateful variable "$x" with a "$" prefix. Stateful variables are not stores and should be read without the "$". Please read it as a normal variable "x"`,
);
});
it(`should not add an issue when reading a non-stateful variable like if it was a store`, () => {
const content = run_autofixers_on_code(`<script>
import { writable } from "svelte/store";
const x = writable(0);
$x;
</script>
`);
expect(content.issues).not.toContain(
`You are reading the stateful variable "$x" with a "$" prefix. Stateful variables are not stores and should be read without the "$". Please read it as a normal variable "x"`,
);
});
it(`should not add an issue when reading a prop like if it was a store`, () => {
const content = run_autofixers_on_code(`<script>
const { x } = $props();
$x;
</script>
`);
expect(content.issues).not.toContain(
`You are reading the stateful variable "$x" with a "$" prefix. Stateful variables are not stores and should be read without the "$". Please read it as a normal variable "x"`,
);
});
});
});

View File

@@ -1,6 +1,4 @@
import { compile as compile_component, compileModule } from 'svelte/compiler';
import { extname } from 'path';
import ts from 'ts-blank-space';
import { compile } from 'svelte/compiler';
export function add_compile_issues(
content: { issues: string[]; suggestions: string[] },
@@ -8,21 +6,6 @@ export function add_compile_issues(
desired_svelte_version: number,
filename = 'Component.svelte',
) {
let compile = compile_component;
const extension = extname(filename);
if (extension !== '.svelte') {
compile = compileModule;
// compile module doesn't accept .ts files so we need to transpile them first with ts-blank-space
// a fast and lightweight typescript transpiler that can strips types replacing them with white spaces
// so the code positions are not affected
if (extension === '.ts') {
code = ts(code, (node) => {
content.issues.push(
`The provided file is a module but it contains invalid TypeScript code: ${node.getText()} at ${node.getStart()}`,
);
});
}
}
const compilation_result = compile(code, {
filename: filename || 'Component.svelte',
generate: false,

View File

@@ -12,7 +12,7 @@ function base_config(svelte_config: Config): ESLint.Options['baseConfig'] {
return [
...svelte.configs.recommended,
{
files: ['*.svelte', '*.svelte.ts', '*.svelte.js'],
files: ['*.svelte'],
rules: {
'no-self-assign': 'warn',
'svelte/infinite-reactive-loop': 'warn',

View File

@@ -1,10 +1,4 @@
import type {
AssignmentExpression,
CallExpression,
Identifier,
Node,
UpdateExpression,
} from 'estree';
import type { AssignmentExpression, Identifier, Node, UpdateExpression } from 'estree';
import type { Autofixer, AutofixerState } from './index.js';
import { left_most_id } from '../ast/utils.js';
import type { AST } from 'svelte-eslint-parser';
@@ -17,17 +11,25 @@ function run_if_in_effect(
) {
const in_effect = path.findLast(
(node) =>
node.type === 'CallExpression' && state.parsed.is_rune(node, ['$effect', '$effect.pre']),
node.type === 'CallExpression' &&
node.callee.type === 'Identifier' &&
node.callee.name === '$effect',
);
if (in_effect) {
to_run();
if (
in_effect &&
in_effect.type === 'CallExpression' &&
(in_effect.callee.type === 'Identifier' || in_effect.callee.type === 'MemberExpression')
) {
if (state.parsed.is_rune(in_effect, ['$effect', '$effect.pre'])) {
to_run();
}
}
}
function assign_or_update_visitor(
function visitor(
node: UpdateExpression | AssignmentExpression,
{ state, path, next }: Context<Node | AST.SvelteNode, AutofixerState>,
{ state, path }: Context<Node | AST.SvelteNode, AutofixerState>,
) {
run_if_in_effect(path, state, () => {
function check_if_stateful_id(id: Identifier) {
@@ -37,7 +39,7 @@ function assign_or_update_visitor(
const init = definition.node.init;
if (
init?.type === 'CallExpression' &&
state.parsed.is_rune(init, ['$state', '$state.raw', '$derived', '$derived.by'])
state.parsed.is_rune(init, ['$state', '$state.raw'])
) {
state.output.suggestions.push(
`The stateful variable "${id.name}" is assigned inside an $effect which is generally consider a malpractice. Consider using $derived if possible.`,
@@ -56,25 +58,9 @@ function assign_or_update_visitor(
}
}
});
next();
}
function call_expression_visitor(
node: CallExpression,
{ state, path, next }: Context<Node | AST.SvelteNode, AutofixerState>,
) {
run_if_in_effect(path, state, () => {
const function_name =
node.callee.type === 'Identifier' ? `the function \`${node.callee.name}\`` : 'a function';
state.output.suggestions.push(
`You are calling ${function_name} inside an $effect. Please check if the function is reassigning a stateful variable because that's considered malpractice and check if it could use \`$derived\` instead. Ignore this suggestion if you are sure this function is not assigning any stateful variable or if you can't check if it does.`,
);
});
next();
}
export const assign_in_effect: Autofixer = {
UpdateExpression: assign_or_update_visitor,
AssignmentExpression: assign_or_update_visitor,
CallExpression: call_expression_visitor,
UpdateExpression: visitor,
AssignmentExpression: visitor,
};

View File

@@ -6,7 +6,7 @@ const dollarless_runes = base_runes.map((r) => r.replace('$', ''));
export const imported_runes: Autofixer = {
ImportDeclaration(node, { state, next }) {
const source = (node.source.value || node.source.raw?.slice(1, -1))?.toString();
if (source && (source === 'svelte' || source.startsWith('svelte/'))) {
if (source && source.startsWith('svelte')) {
for (const specifier of node.specifiers) {
const id =
specifier.type === 'ImportDefaultSpecifier'

View File

@@ -16,5 +16,3 @@ export * from './wrong-property-access-state.js';
export * from './imported-runes.js';
export * from './derived-with-function.js';
export * from './use-runes-instead-of-store.js';
export * from './suggest-attachments.js';
export * from './read-state-with-dollar.js';

View File

@@ -1,22 +0,0 @@
import type { Autofixer } from './index.js';
export const read_state_with_dollar: Autofixer = {
Identifier(node, { state }) {
if (node.name.startsWith('$')) {
const reference = state.parsed.find_reference_by_id(node);
if (reference && reference.resolved && reference.resolved.defs[0]?.node?.init) {
const is_state = state.parsed.is_rune(reference.resolved.defs[0].node.init, [
'$state',
'$state.raw',
'$derived',
'$derived.by',
]);
if (is_state) {
state.output.issues.push(
`You are reading the stateful variable "${node.name}" with a "$" prefix. Stateful variables are not stores and should be read without the "$". Please read it as a normal variable "${node.name.substring(1)}"`,
);
}
}
}
},
};

View File

@@ -1,46 +0,0 @@
import type { Identifier } from 'estree';
import type { Autofixer } from './index.js';
import { left_most_id } from '../ast/utils.js';
export const suggest_attachments: Autofixer = {
SvelteDirective(node, { state, next, path }) {
if (node.kind === 'Binding' && node.key.name.name === 'this') {
const parent_element = path.findLast((p) => p.type === 'SvelteElement');
if (parent_element?.kind === 'html' && parent_element.startTag.attributes.includes(node)) {
let better_an_attachment = ` or even better an \`attachment\``;
if (state.desired_svelte_version === 4) {
better_an_attachment = ``;
}
state.output.suggestions.push(
`The usage of \`bind:this\` can often be replaced with an easier to read \`action\`${better_an_attachment}. Consider using the latter if possible.`,
);
}
} else if (node.kind === 'Action' && state.desired_svelte_version === 5) {
let id: Identifier | null = null;
if (node.key.name.type === 'Identifier') {
id = node.key.name;
} else if (node.key.name.type === 'MemberExpression') {
id = left_most_id(node.key.name);
}
if (id) {
const reference = state.parsed.find_reference_by_id(id);
const definition = reference?.resolved?.defs[0];
if (
definition &&
(definition.type === 'Variable' ||
!(definition.type === 'ImportBinding' || definition.type === 'Parameter')) &&
!(
definition.type === 'Variable' &&
definition.node.init?.type === 'CallExpression' &&
state.parsed.is_rune(definition.node.init, ['$props'])
)
) {
state.output.suggestions.push(
`Consider using an \`attachment\` instead of an \`action\` for "${id.name}".`,
);
}
}
}
next();
},
};

View File

@@ -22,7 +22,7 @@ export const wrong_property_access_state: Autofixer = {
const init = definition.node.init;
if (
init?.type === 'CallExpression' &&
state.parsed.is_rune(init, ['$state', '$state.raw', '$derived', '$derived.by'])
state.parsed.is_rune(init, ['$state', '$state.raw'])
) {
let suggestion = is_property
? `You are trying to read the stateful variable "${id.name}" using "${node.property.name}". stateful variables should be read just by accessing them like normal variable, do not use properties to read them.`

View File

@@ -1 +1 @@
export { setup_svelte_task } from './svelte-task.js';
export * from './svelte-task.js';

View File

@@ -1,18 +1,31 @@
import type { SvelteMcp } from '../../index.js';
import * as v from 'valibot';
import { format_sections_list } from '../../utils.js';
/**
* Function that actually generates the prompt string. You can use this in the MCP server handler to generate the prompt, it can accept arguments
* if needed (it will always be invoked manually so it's up to you to provide the arguments).
*/
function svelte_task(available_docs: string, task: string) {
return `You are a Svelte expert tasked to build components and utilities for Svelte developers. If you need documentation for anything related to Svelte you can invoke the tool \`get_documentation\` with one of the following paths:
<available-docs>
export function setup_svelte_task(server: SvelteMcp) {
server.prompt(
{
name: 'svelte-task-prompt',
title: 'Svelte Task Prompt',
description:
'Use this Prompt to ask for any svelte related task. It will automatically instruct the LLM on how to best use the autofixer and how to query for documentation pages.',
schema: v.object({
task: v.pipe(v.string(), v.description('The task to be performed')),
}),
},
async ({ task }) => {
// TODO: implement logic to fetch the available docs paths to return in the prompt
const available_docs: string[] = [];
${available_docs}
</available-docs>
return {
messages: [
{
role: 'user',
content: {
type: 'text',
text: `You are a Svelte expert tasked to build components and utilities for Svelte developers. If you need documentation for anything related to Svelte you can invoke the tool \`get_documentation\` with one of the following paths:
<available-docs-paths>
${JSON.stringify(available_docs, null, 2)}
</available-docs-paths>
Every time you write a Svelte component or a Svelte module you MUST invoke the \`svelte-autofixer\` tool providing the code. The tool will return a list of issues or suggestions. If there are any issues or suggestions you MUST fix them and call the tool again with the updated code. You MUST keep doing this until the tool returns no issues or suggestions. Only then you can return the code to the user.
@@ -22,59 +35,8 @@ This is the task you will work on:
${task}
</task>
If you are not writing the code into a file, once you have the final version of the code ask the user if it wants to generate a playground link to quickly check the code in it and if it answer yes call the \`playground-link\` tool and return the url to the user nicely formatted. The playground link MUST be generated only once you have the final version of the code and you are ready to share it, it MUST include an entry point file called \`App.svelte\` where the main component should live. If you have multiple files to include in the playground link you can include them all at the root.`;
}
/**
* This function is used to generate the prompt to update the docs in the script `/scripts/update-docs-prompts.ts` it should use the default export
* function and pass in the arguments. Since it will be included in the documentation if it's an argument that the MCP will expose it should
* be in the format [NAME_OF_THE_ARGUMENT] to signal the user that it can substitute it.
*
* The name NEEDS to be `generate_for_docs`.
*/
export async function generate_for_docs() {
const available_docs = await format_sections_list();
return svelte_task(available_docs, '[YOUR TASK HERE]');
}
/**
* Human readable description of what the prompt does. It will be included in the documentation.
*
* The name NEEDS to be `docs_description`.
*/
export const docs_description =
'This prompt should be used whenever you are asking the model to work on a Svelte-related task. It will instruct the LLM which documentation sections are available, which tools to invoke, when to invoke them, and how to interpret the results.';
export function setup_svelte_task(server: SvelteMcp) {
server.prompt(
{
name: 'svelte-task',
title: 'Svelte-Task-Prompt',
description:
'Use this Prompt to ask for any svelte related task. It will automatically instruct the LLM on how to best use the autofixer and how to query for documentation pages.',
schema: v.object({
task: v.pipe(v.string(), v.description('The task to be performed')),
}),
complete: {
task() {
return {
completion: {
values: [''],
},
};
},
},
},
async ({ task }) => {
const available_docs = await format_sections_list();
return {
messages: [
{
role: 'user',
content: {
type: 'text',
text: svelte_task(available_docs, task),
If you are not writing the code into a file, once you have the final version of the code ask the user if it wants to generate a playground link to quickly check the code in it and if it answer yes call the \`playground-link\` tool and return the url to the user nicely formatted. The playground link MUST be generated only once you have the final version of the code and you are ready to share it, it MUST include an entry point file called \`App.svelte\` where the main component should live. If you have multiple files to include in the playground link you can include them all at the root.
`,
},
},
],

View File

@@ -1,64 +0,0 @@
import type { SvelteMcp } from '../../index.js';
import { get_sections, fetch_with_timeout } from '../../utils.js';
export async function list_sections(server: SvelteMcp) {
const sections = await get_sections();
server.template(
{
name: 'Svelte-Doc-Section',
description: 'A single documentation section',
list() {
return sections.map((section) => {
const section_name = section.slug;
const resource_name = section_name;
const resource_uri = `svelte://${section_name}.md`;
return {
name: resource_name,
description: section.use_cases,
uri: resource_uri,
title: section.title,
};
});
},
complete: {
slug: (query) => {
const values = sections
.reduce<string[]>((acc, section) => {
const section_name = section.slug;
const resource_name = section_name;
if (section_name.includes(query.toLowerCase())) {
acc.push(resource_name);
}
return acc;
}, [])
// there's a hard limit of 100 for completions
.slice(0, 100);
return {
completion: {
values,
},
};
},
},
uri: 'svelte://{/slug*}.md',
},
async (uri, { slug }) => {
const section = sections.find((section) => {
return slug === section.slug;
});
if (!section) throw new Error(`Section not found: ${slug}`);
const response = await fetch_with_timeout(section.url);
const content = await response.text();
return {
contents: [
{
uri,
type: 'text',
text: content,
},
],
};
},
);
}

View File

@@ -1 +1 @@
export * from './doc-section.js';
export * from './list-sections.js';

View File

@@ -0,0 +1,24 @@
import type { SvelteMcp } from '../../index.js';
export function list_sections(server: SvelteMcp) {
server.resource(
{
name: 'list-sections',
description:
'The list of all the available Svelte 5 and SvelteKit documentation sections in a structured format.',
uri: 'svelte://list-sections',
title: 'Svelte Documentation Section',
},
async (uri) => {
return {
contents: [
{
uri,
type: 'text',
text: 'resource list-sections called',
},
],
};
},
);
}

View File

@@ -1,38 +1,22 @@
import type { SvelteMcp } from '../../index.js';
import * as v from 'valibot';
import {
get_sections,
fetch_with_timeout,
format_sections_list,
get_distilled_content,
} from '../../utils.js';
import { SECTIONS_LIST_INTRO, SECTIONS_LIST_OUTRO } from './prompts.js';
export function get_documentation(server: SvelteMcp) {
server.tool(
{
name: 'get-documentation',
description:
'Retrieves documentation content for Svelte 5 or SvelteKit sections. Supports flexible search by title (e.g., "$state", "routing") or file path (e.g., "cli/overview"). Can accept a single section name or an array of sections. Before running this, make sure to analyze the users query, as well as the output from list-sections (which should be called first). Then ask for ALL relevant sections the user might require. For example, if the user asks to build anything interactive, you will need to fetch all relevant runes, and so on.',
'Retrieves full documentation content for Svelte 5 or SvelteKit sections. Supports flexible search by title (e.g., "$state", "routing") or file path (e.g., "docs/svelte/state.md"). Can accept a single section name or an array of sections. Before running this, make sure to analyze the users query, as well as the output from list_sections (which should be called first). Then ask for ALL relevant sections the user might require. For example, if the user asks to build anything interactive, you will need to fetch all relevant runes, and so on.',
schema: v.object({
section: v.pipe(
v.union([v.string(), v.array(v.string())]),
v.description(
'The section name(s) to retrieve. Can search by title (e.g., "$state", "load functions") or file path (e.g., "cli/overview"). Supports single string and array of strings',
'The section name(s) to retrieve. Can search by title (e.g., "$state", "load functions") or file path (e.g., "docs/svelte/state.md"). Supports single string and array of strings',
),
),
use_distilled: v.optional(
v.pipe(
v.boolean(),
v.description(
'If true (default), returns condensed distilled versions of the documentation to optimize context size. Set to false ONLY if the user asks to fetch full documentation.',
),
),
true,
),
}),
},
async ({ section, use_distilled = true }) => {
({ section }) => {
let sections: string[];
if (Array.isArray(section)) {
@@ -58,100 +42,13 @@ export function get_documentation(server: SvelteMcp) {
sections = [];
}
const available_sections = await get_sections();
// Sections that are never distilled, since they contain reference information where things might go missing in distillation
const ALWAYS_FULL_SECTIONS = [
'kit/@sveltejs-kit',
'svelte/v5-migration-guide',
'kit/remote-functions',
'kit/configuration',
'mcp/prompts',
'svelte/compiler-warnings',
'svelte/svelte-compiler',
'svelte/compiler-errors',
'svelte/svelte',
];
const settled_results = await Promise.allSettled(
sections.map(async (requested_section) => {
const matched_section = available_sections.find(
(s) =>
s.title.toLowerCase() === requested_section.toLowerCase() ||
s.slug === requested_section ||
s.url === requested_section,
);
if (matched_section) {
// Force full documentation for specific sections
const should_use_distilled =
use_distilled && !ALWAYS_FULL_SECTIONS.includes(matched_section.slug);
console.log(
`Fetching documentation for section "${matched_section.title}" (${should_use_distilled ? 'distilled' : 'full'})`,
);
if (should_use_distilled) {
const distilled = get_distilled_content(matched_section.slug);
if (distilled) {
return {
success: true,
content: `## ${matched_section.title}\n\n${distilled}`,
};
}
// If no distilled content, fall through to fetch full content
}
try {
const response = await fetch_with_timeout(matched_section.url);
if (response.ok) {
const content = await response.text();
return { success: true, content: `## ${matched_section.title}\n\n${content}` };
} else {
return {
success: false,
content: `## ${matched_section.title}\n\nError: Could not fetch documentation (HTTP ${response.status})`,
};
}
} catch (error) {
return {
success: false,
content: `## ${matched_section.title}\n\nError: Failed to fetch documentation - ${error}`,
};
}
} else {
return {
success: false,
content: `## ${requested_section}\n\nError: Section not found.`,
};
}
}),
);
const results = settled_results.map((result) => {
if (result.status === 'fulfilled') {
return result.value;
} else {
return {
success: false,
content: `Error: Couldn't fetch - ${result.reason}`,
};
}
});
const has_any_success = results.some((result) => result.success);
let final_text = results.map((r) => r.content).join('\n\n---\n\n');
if (!has_any_success) {
const formatted_sections = await format_sections_list();
final_text += `\n\n---\n\n${SECTIONS_LIST_INTRO}\n\n${formatted_sections}\n\n${SECTIONS_LIST_OUTRO}`;
}
const sections_list = sections.length > 0 ? sections.join(', ') : 'no sections';
return {
content: [
{
type: 'text',
text: final_text,
text: `called for sections: ${sections_list}`,
},
],
};

View File

@@ -1,22 +1,18 @@
import type { SvelteMcp } from '../../index.js';
import { format_sections_list } from '../../utils.js';
import { SECTIONS_LIST_INTRO, SECTIONS_LIST_OUTRO } from './prompts.js';
export function list_sections(server: SvelteMcp) {
server.tool(
{
name: 'list-sections',
description:
'Lists all available Svelte 5 and SvelteKit documentation sections in a structured format. Each section includes a "use_cases" field that describes WHEN this documentation would be useful. You should carefully analyze the use_cases field to determine which sections are relevant for the user\'s query. The use_cases contain comma-separated keywords describing project types (e.g., "e-commerce", "blog"), features (e.g., "authentication", "forms"), components (e.g., "slider", "modal"), development stages (e.g., "deployment", "testing"), or "always" for fundamental concepts. Match these use_cases against the user\'s intent - for example, if building an e-commerce site, fetch sections with use_cases containing "e-commerce", "product listings", "shopping cart", etc. If building a slider, look for "slider", "carousel", "animation", etc. Returns sections as "* title: [section_title], use_cases: [use_cases], path: [file_path]". Always run list-sections FIRST for any Svelte query, then analyze ALL use_cases to identify relevant sections, and finally use get_documentation to fetch ALL relevant sections at once.',
'Lists all available Svelte 5 and SvelteKit documentation sections in a structured format. Returns sections as a list of "* title: [section_title], path: [file_path]" - you can use either the title or path when querying a specific section via the get_documentation tool. Always run list_sections first for any query related to Svelte development to discover available content.',
},
async () => {
const formatted_sections = await format_sections_list();
() => {
return {
content: [
{
type: 'text',
text: `${SECTIONS_LIST_INTRO}\n\n${formatted_sections}\n\n${SECTIONS_LIST_OUTRO}`,
text: 'tool list_sections called',
},
],
};

View File

@@ -1,82 +0,0 @@
export const SECTIONS_LIST_INTRO =
'List of available Svelte documentation sections with their intended use cases. The "use_cases" field describes WHEN each section would be useful - analyze these carefully to determine which sections match the user\'s query:';
export const SECTIONS_LIST_OUTRO =
"Carefully analyze the use_cases field for each section to identify which documentation is relevant for the user's specific query. The use_cases contain keywords for project types, features, components, and development stages. After identifying relevant sections, use the get-documentation tool with ALL relevant section titles or paths at once (can pass multiple sections as an array).";
export const USE_CASES_PROMPT = `You are tasked with analyzing Svelte 5 and SvelteKit documentation pages to identify when they would be useful.
Your task:
1. Read the documentation page content provided
2. Identify the main use cases, scenarios, or queries where this documentation would be relevant
3. Create a VERY SHORT, comma-separated list of use cases (maximum 200 characters total)
4. Think about what a developer might be trying to build or accomplish when they need this documentation
Guidelines:
- Focus on WHEN this documentation would be needed, not WHAT it contains
- Consider specific project types (e.g., "e-commerce site", "blog", "dashboard", "social media app")
- Consider specific features (e.g., "authentication", "forms", "data fetching", "animations")
- Consider specific components (e.g., "slider", "modal", "dropdown", "card")
- Consider development stages (e.g., "project setup", "deployment", "testing", "migration")
- Use "always" for fundamental concepts that apply to virtually all Svelte projects
- Be concise but specific
- Use lowercase
- Separate multiple use cases with commas
Examples of good use_cases:
- "always, any svelte project, core reactivity"
- "authentication, login systems, user management"
- "e-commerce, product listings, shopping carts"
- "forms, user input, data submission"
- "deployment, production builds, hosting setup"
- "animation, transitions, interactive ui"
- "routing, navigation, multi-page apps"
- "blog, content sites, markdown rendering"
Requirements:
- Maximum 200 characters (including spaces and commas)
- Lowercase only
- Comma-separated list of use cases
- Focus on WHEN/WHY someone would need this, not what it is
- Be specific about project types, features, or components when applicable
- Use "always" sparingly, only for truly universal concepts
- Do not include quotes or special formatting in your response
- Respond with ONLY the use cases text, no additional text
Here is the documentation page content to analyze:
`;
export const DISTILLED_PROMPT = `You are an expert in web development, specifically Svelte 5 and SvelteKit. Your task is to condense and distill a section of the Svelte documentation that will be provided inside the "<documentation>" tag below, into a concise format while preserving the most important information.
Shorten the text information AS MUCH AS POSSIBLE while covering key concepts.
Focus on:
1. Code examples with short explanations of how they work
2. Key concepts and APIs with their usage patterns
3. Important gotchas and best practices
4. Patterns that developers commonly use
Remove:
1. Redundant explanations
2. Verbose content that can be simplified
3. Marketing language
4. Legacy or deprecated content
5. Anything else that is not strictly necessary
Keep your output in markdown format. Preserve code blocks with their language annotations.
Maintain headings but feel free to combine or restructure sections to improve clarity.
Make sure all code examples use Svelte 5 runes syntax ($state, $derived, $effect, etc.)
Keep the following Svelte 5 syntax rules in mind whend distilling the documentation:
* There is no colon (:) in event modifiers. You MUST use "onclick" instead of "on:click".
* Runes do not need to be imported, they are globals.
* $state() runes are always declared using let, never with const.
* When passing a function to $derived, you must always use $derived.by(() => ...).
* Error boundaries can only catch errors during component rendering and at the top level of an $effect inside the error boundary.
* Error boundaries do not catch errors in onclick or other event handlers.
IMPORTANT: All code examples MUST come from the documentation verbatim, do NOT create new code examples. Do NOT modify existing code examples.
IMPORTANT: Because of changes in Svelte 5 syntax, do not include content from your existing knowledge, you may only use knowledge from the <documentation> tag below.
Here is the documentation you must condense:
`;

View File

@@ -15,7 +15,7 @@ export function svelte_autofixer(server: SvelteMcp) {
schema: v.object({
code: v.string(),
desired_svelte_version: v.pipe(
v.union([v.string(), v.number()]),
v.union([v.literal(4), v.literal(5), v.literal('4'), v.literal('5')]),
v.description(
'The desired svelte version...if possible read this from the package.json of the user project, otherwise use some hint from the wording (if the user asks for runes it wants version 5). Default to 5 in case of doubt.',
),
@@ -39,30 +39,7 @@ export function svelte_autofixer(server: SvelteMcp) {
openWorldHint: false,
},
},
async ({
code,
filename: filename_or_path,
desired_svelte_version: desired_svelte_version_unchecked,
}) => {
// we validate manually because some clients don't support union in the input schema (looking at you cursor)
const parsed_version = v.safeParse(
v.union([v.literal(4), v.literal(5), v.literal('4'), v.literal('5')]),
desired_svelte_version_unchecked,
);
if (parsed_version.success === false) {
return {
isError: true,
content: [
{
type: 'text',
text: `The desired_svelte_version MUST be either 4 or 5 but received "${desired_svelte_version_unchecked}"`,
},
],
};
}
const desired_svelte_version = parsed_version.output;
async ({ code, filename: filename_or_path, desired_svelte_version }) => {
const content: {
issues: string[];
suggestions: string[];

View File

@@ -1,67 +0,0 @@
import * as v from 'valibot';
import { documentation_sections_schema } from '../lib/schemas.js';
import summary_data from '../use_cases.json' with { type: 'json' };
import distilled_data from '../distilled.json' with { type: 'json' };
export async function fetch_with_timeout(
url: string,
timeout_ms: number = 10000,
): Promise<Response> {
try {
const response = await fetch(url, { signal: AbortSignal.timeout(timeout_ms) });
return response;
} catch (error) {
if (error instanceof Error && error.name === 'AbortError') {
throw new Error(`Request timed out after ${timeout_ms}ms`);
}
throw error;
}
}
const summaries = (summary_data.summaries || {}) as Record<string, string>;
const distilled_summaries = (distilled_data.summaries || {}) as Record<string, string>;
const full_data = (distilled_data.content || {}) as Record<string, string>;
export function get_distilled_content(slug: string): string | null {
return distilled_summaries[slug] ?? null;
}
export function get_cached_content(slug: string): string | null {
return full_data[slug] ?? null;
}
export async function get_sections() {
const sections = await fetch_with_timeout(
'https://svelte.dev/docs/experimental/sections.json',
).then((res) => res.json());
const validated_sections = v.safeParse(documentation_sections_schema, sections);
if (!validated_sections.success) return [];
const mapped_sections = Object.entries(validated_sections.output).map(([, section]) => {
const original_slug = section.slug;
const cleaned_slug = original_slug.startsWith('docs/')
? original_slug.slice('docs/'.length)
: original_slug;
return {
title: section.metadata.title,
use_cases:
section.metadata.use_cases ??
summaries[original_slug] ??
summaries[cleaned_slug] ??
'use title and path to estimate use case',
slug: cleaned_slug,
// Use original slug in URL to ensure it still works
url: `https://svelte.dev/${original_slug}/llms.txt`,
};
});
return mapped_sections;
}
export async function format_sections_list() {
const sections = await get_sections();
return sections
.map((s) => `- title: ${s.title}, use_cases: ${s.use_cases}, path: ${s.slug}`)
.join('\n');
}

View File

@@ -36,18 +36,8 @@ export function parse(code: string, file_path: string) {
}
return all_scopes;
}
// walking the ast will also walk all the tokens if we don't remove them so we return them separately
// we also remove the parent which as a circular reference to the ast itself (and it's not needed since we use zimmerframe to walk the ast)
const {
ast: { tokens, ...ast },
} = parsed;
// @ts-expect-error we also have to delete it from the object or the circular reference remains
delete parsed.ast.tokens;
return {
ast,
tokens,
ast: parsed.ast,
scope_manager: parsed.scopeManager as ScopeManager,
visitor_keys: parsed.visitorKeys,
get all_scopes() {

File diff suppressed because one or more lines are too long

View File

@@ -1,33 +0,0 @@
# devtools-json Add-on
Installs [`vite-plugin-devtools-json`](https://github.com/ChromeDevTools/vite-plugin-devtools-json/) - a Vite plugin that generates a Chromium DevTools settings file at `/.well-known/appspecific/com.chrome.devtools.json`. Enables [workspaces feature](https://developer.chrome.com/docs/devtools/workspaces) to edit source files directly in Chromium browsers.
> [!NOTE]
> Enables feature for all dev server users with Chromium browsers. Allows browser to read/write all files in directory. Chrome's AI Assistance may send data to Google.
## Alternatives
**Disable in browser:** Visit `chrome://flags` and disable "DevTools Project Settings" and "DevTools Automatic Workspace Folders".
**Handle request manually:** Create `.well-known/appspecific/com.chrome.devtools.json` file or add to `handle` hook:
```js
/// file: src/hooks.server.js
import { dev } from '$app/environment';
export function handle({ event, resolve }) {
if (dev && event.url.pathname === '/.well-known/appspecific/com.chrome.devtools.json') {
return new Response(undefined, { status: 404 });
}
return resolve(event);
}
```
## Usage
```sh
npx sv add devtools-json
```
Adds `vite-plugin-devtools-json` to Vite config.

View File

@@ -1,46 +0,0 @@
# Drizzle ORM
TypeScript ORM with relational and SQL-like query APIs, serverless-ready.
## Setup
```sh
npx sv add drizzle
```
**Includes:**
- Database access in SvelteKit server files
- `.env` for credentials
- Lucia auth compatibility
- Optional Docker config for local database
## Options
### database
Choose database variant:
- `postgresql` — popular open source
- `mysql` — popular open source
- `sqlite` — file-based, no server needed
```sh
npx sv add drizzle=database:postgresql
```
### client
SQL client (depends on database):
- **postgresql**: `postgres.js`, `neon`
- **mysql**: `mysql2`, `planetscale`
- **sqlite**: `better-sqlite3`, `libsql`, `turso`
```sh
npx sv add drizzle=database:postgresql+client:postgres.js
```
*Note: Can swap for [other Drizzle-compatible drivers](https://orm.drizzle.team/docs/connect-overview#next-steps) after setup*
### docker
Add Docker Compose config (postgresql/mysql only):
```sh
npx sv add drizzle=database:postgresql+client:postgres.js+docker:yes
```

View File

@@ -1,15 +0,0 @@
# ESLint
Lints and fixes code problems.
## Setup
```sh
npx sv add eslint
```
Installs:
- `eslint-plugin-svelte`
- `eslint.config.js`
- Updated `.vscode/settings.json`
- Auto-configured for TypeScript and Prettier if present

View File

@@ -1,20 +0,0 @@
# sv CLI
## Running sv CLI
```bash
npm: npx sv create
pnpm: pnpx sv create / pnpm dlx sv create
bun: bunx sv create
deno: deno run npm:sv create
yarn: yarn dlx sv create
```
## Troubleshooting
If `npx sv` doesn't work, package managers may prioritize local tools over registry packages. Common issues:
- Command does nothing
- Name collision with `runit`
- Windows PowerShell conflict with `Set-Variable`
See: [GitHub issues #472](https://github.com/sveltejs/cli/issues/472), [#259](https://github.com/sveltejs/cli/issues/259), [#317](https://github.com/sveltejs/cli/issues/317)

View File

@@ -1,18 +0,0 @@
# Lucia Auth
Auth setup following [Lucia auth guide](https://lucia-auth.com/).
## Usage
```sh
npx sv add lucia
```
Adds auth setup for SvelteKit + Drizzle following Lucia best practices.
## Options
**demo** - Include demo registration/login pages:
```sh
npx sv add lucia=demo:yes
```

View File

@@ -1,11 +0,0 @@
# mdsvex
[mdsvex](https://mdsvex.pngwn.io) is a markdown preprocessor for Svelte - allows using Svelte components in markdown and vice versa.
## Installation
```sh
npx sv add mdsvex
```
Installs and configures mdsvex in `svelte.config.js`.

View File

@@ -1,13 +0,0 @@
# CLI (`sv`)
Toolkit for creating and maintaining Svelte applications.
## Usage
Run with `npx` (or `pnpx` for pnpm):
```sh
npx sv <command> <args>
```
Uses local installation if available, otherwise downloads latest version without installing.

View File

@@ -1,30 +0,0 @@
# Paraglide i18n
Compiler-based i18n library with tree-shakable messages, small bundles, type-safety.
## Installation
```sh
npx sv add paraglide
```
## Includes
- Inlang project settings
- Paraglide Vite plugin
- SvelteKit `reroute` and `handle` hooks
- `text-direction` and `lang` attributes in `app.html`
- Updated `.gitignore`
- Optional demo page
## Options
**languageTags** - IETF BCP 47 language tags:
```sh
npx sv add paraglide="languageTags:en,es"
```
**demo** - Generate demo page:
```sh
npx sv add paraglide="demo:yes"
```

View File

@@ -1,15 +0,0 @@
# Playwright
Browser testing with [Playwright](https://playwright.dev).
## Usage
```sh
npx sv add playwright
```
Adds:
- Test scripts to `package.json`
- Playwright config file
- Updated `.gitignore`
- Demo test

View File

@@ -1,15 +0,0 @@
# Prettier
Opinionated code formatter for Svelte projects.
## Usage
```sh
npx sv add prettier
```
## Adds
- `package.json` scripts
- `.prettierignore` and `.prettierrc` config files
- ESLint config updates (if ESLint installed)

View File

@@ -1,15 +0,0 @@
# Storybook
Component workshop for Svelte/SvelteKit.
## Installation
```sh
npx sv add storybook
```
## Features
- Runs `npx storybook init` automatically
- Configures either [Storybook for SvelteKit](https://storybook.js.org/docs/get-started/frameworks/sveltekit) or [Storybook for Svelte & Vite](https://storybook.js.org/docs/get-started/frameworks/svelte-vite)
- Includes SvelteKit module mocking and automatic link handling

View File

@@ -1,37 +0,0 @@
# sv add
Adds functionality to existing Svelte projects.
## Usage
```sh
npx sv add
```
```sh
npx sv add [add-ons]
```
Select multiple space-separated add-ons or use interactive prompt.
## Options
- `-C`, `--cwd` — path to project root
- `--no-git-check` — skip dirty files prompt
- `--install` — install dependencies with specified package manager
- `--no-install` — skip dependency installation
## Official add-ons
- `devtools-json`
- `drizzle`
- `eslint`
- `lucia`
- `mdsvex`
- `paraglide`
- `playwright`
- `prettier`
- `storybook`
- `sveltekit-adapter`
- `tailwindcss`
- `vitest`

View File

@@ -1,109 +0,0 @@
# sv check
Finds errors and warnings in your project: unused CSS, accessibility hints, JS/TS compiler errors.
Requires Node 16+.
## Installation
```sh
npm i -D svelte-check
```
## Usage
```sh
npx sv check
```
## Options
### `--workspace <path>`
Path to workspace. Checks all subdirectories except `node_modules` and ignored paths.
### `--output <format>`
Display format: `human`, `human-verbose`, `machine`, `machine-verbose`
### `--watch`
Watch mode for changes.
### `--preserveWatchOutput`
Don't clear screen in watch mode.
### `--tsconfig <path>`
Path to `tsconfig`/`jsconfig`. Only files matched by config's `files`/`include`/`exclude` are checked. Reports errors from TS/JS files. If not provided, searches upward from project directory.
### `--no-tsconfig`
Only check Svelte files, ignore `.js`/`.ts` files.
### `--ignore <paths>`
Comma-separated quoted paths relative to workspace root:
```sh
npx sv check --ignore "dist,build"
```
Only effective with `--no-tsconfig` for diagnostics. With `--tsconfig`, only affects watched files.
### `--fail-on-warnings`
Exit with error code on warnings.
### `--compiler-warnings <warnings>`
Comma-separated `code:behaviour` pairs (`ignore` or `error`):
```sh
npx sv check --compiler-warnings "css_unused_selector:ignore,a11y_missing_attribute:error"
```
### `--diagnostic-sources <sources>`
Comma-separated sources (default: all active):
- `js` (includes TypeScript)
- `svelte`
- `css`
```sh
npx sv check --diagnostic-sources "js,svelte"
```
### `--threshold <level>`
Filter diagnostics:
- `warning` (default) — errors and warnings
- `error` — only errors
## Machine-readable output
`--output machine` or `machine-verbose` formats output for CI/automation.
Each row: columns separated by single space. First column: timestamp (ms). Second column: row type.
**START row:** workspace folder (quoted)
```
1590680325583 START "/home/user/language-tools/packages/language-server/test/plugins/typescript/testfiles"
```
**machine format:** filename, line, column, message (quoted)
```
1590680326283 ERROR "codeactions.svelte" 1:16 "Cannot find module 'blubb' or its corresponding type declarations."
1590680326778 WARNING "imported-file.svelte" 0:37 "Component has unused export property 'prop'. If it is for external reference only, please consider using `export const prop`"
```
**machine-verbose format:** ndjson with timestamp prefix
```
1590680326283 {"type":"ERROR","fn":"codeaction.svelte","start":{"line":1,"character":16},"end":{"line":1,"character":23},"message":"Cannot find module 'blubb' or its corresponding type declarations.","code":2307,"source":"js"}
1590680326778 {"type":"WARNING","filename":"imported-file.svelte","start":{"line":0,"character":37},"end":{"line":0,"character":51},"message":"Component has unused export property 'prop'. If it is for external reference only, please consider using `export const prop`","code":"unused-export-let","source":"svelte"}
```
**COMPLETED row:** summary
```
1590680326807 COMPLETED 20 FILES 21 ERRORS 1 WARNINGS 3 FILES_WITH_PROBLEMS
```
**FAILURE row:** runtime errors
```
1590680328921 FAILURE "Connection closed"
```
## FAQ
**Why no option to check only specific files?**
`svelte-check` needs the whole project for valid checks. Partial checks miss errors in unchanged files (e.g., renamed prop not updated at usage sites).

View File

@@ -1,39 +0,0 @@
# sv create
Sets up a new SvelteKit project with optional additional functionality.
## Usage
```sh
npx sv create [options] [path]
```
## Options
### `--from-playground <url>`
Create project from a [playground](/playground) URL. Downloads files, detects dependencies, and sets up complete project structure.
```sh
npx sv create --from-playground="https://svelte.dev/playground/hello-world"
```
### `--template <name>`
- `minimal` — barebones scaffolding
- `demo` — showcase app with word guessing game (works without JS)
- `library` — Svelte library template with `svelte-package`
### `--types <option>`
- `ts``.ts` files and `lang="ts"` in `.svelte` components
- `jsdoc` — [JSDoc syntax](https://www.typescriptlang.org/docs/handbook/jsdoc-supported-types.html) for types
### `--no-types`
Disable typechecking (not recommended)
### `--no-add-ons`
Skip interactive add-ons prompt
### `--install <package-manager>`
Install dependencies with: `npm`, `pnpm`, `yarn`, `bun`, or `deno`
### `--no-install`
Skip dependency installation

View File

@@ -1,39 +0,0 @@
# sv migrate
CLI tool for migrating Svelte(Kit) codebases. Delegates to [`svelte-migrate`](https://www.npmjs.com/package/svelte-migrate).
May add `@migration` task annotations in code for manual completion.
## Usage
```sh
npx sv migrate
```
Or specify migration:
```sh
npx sv migrate [migration]
```
## Migrations
### `app-state`
Migrates `$app/stores``$app/state` in `.svelte` files. [Details](/docs/kit/migrating-to-sveltekit-2#SvelteKit-2.12:-$app-stores-deprecated)
### `svelte-5`
Upgrades Svelte 4 → 5, converts components to [runes](../svelte/what-are-runes) syntax. [Migration guide](../svelte/v5-migration-guide)
### `self-closing-tags`
Replaces self-closing non-void elements. [PR](https://github.com/sveltejs/kit/pull/12128)
### `svelte-4`
Upgrades Svelte 3 → 4. [Migration guide](../svelte/v4-migration-guide)
### `sveltekit-2`
Upgrades SvelteKit 1 → 2. [Migration guide](../kit/migrating-to-sveltekit-2)
### `package`
Upgrades `@sveltejs/package` v1 → v2. [PR](https://github.com/sveltejs/kit/pull/8922)
### `routes`
Upgrades pre-release SvelteKit to v1 filesystem routing. [Discussion](https://github.com/sveltejs/kit/discussions/5774)

View File

@@ -1,24 +0,0 @@
# SvelteKit Adapters
Adapters enable deployment to various platforms.
## Usage
```sh
npx sv add sveltekit-adapter
```
Installs and configures chosen adapter in `svelte.config.js`.
## Adapter Options
- `auto` — [`@sveltejs/adapter-auto`](/docs/kit/adapter-auto) - auto-selects adapter, less configurable
- `node` — [`@sveltejs/adapter-node`](/docs/kit/adapter-node) - standalone Node server
- `static` — [`@sveltejs/adapter-static`](/docs/kit/adapter-static) - static site generator (SSG)
- `vercel` — [`@sveltejs/adapter-vercel`](/docs/kit/adapter-vercel) - Vercel deployment
- `cloudflare` — [`@sveltejs/adapter-cloudflare`](/docs/kit/adapter-cloudflare) - Cloudflare deployment
- `netlify` — [`@sveltejs/adapter-netlify`](/docs/kit/adapter-netlify) - Netlify deployment
```sh
npx sv add sveltekit-adapter=adapter:node
```

View File

@@ -1,26 +0,0 @@
# Tailwind CSS
## Setup
```sh
npx sv add tailwindcss
```
## What's Installed
- Tailwind config following SvelteKit guide
- Tailwind Vite plugin
- Updated `app.css` and `+layout.svelte` (SvelteKit) or `App.svelte` (Vite)
- Prettier integration (if installed)
## Options
Add plugins via CLI:
```sh
npx sv add tailwindcss="plugins:typography"
```
Available plugins:
- `typography` — [@tailwindcss/typography](https://github.com/tailwindlabs/tailwindcss-typography)
- `forms` — [@tailwindcss/forms](https://github.com/tailwindlabs/tailwindcss-forms)

View File

@@ -1,11 +0,0 @@
# Vitest
Vite-native testing framework for SvelteKit.
## Setup
```sh
npx sv add vitest
```
Installs packages, adds scripts to `package.json`, configures client/server-aware Svelte testing in Vite config, and includes demo tests.

Some files were not shown because too many files have changed in this diff Show More