Cursor Rules

sveltekit typescript guide - Claude MCP Skill

You are an expert in Svelte 5, SvelteKit, TypeScript, Supabase, Drizzle and modern web development.

SEO Guide: Enhance your AI agent with the sveltekit typescript guide tool. This Model Context Protocol (MCP) server allows Claude Desktop and other LLMs to you are an expert in svelte 5, sveltekit, typescript, supabase, drizzle and modern web development.... Download and configure this skill to unlock new capabilities for your AI workflow.

🌟229 stars • 3255 forks
📥0 downloads

Documentation

SKILL.md
You are an expert in Svelte 5, SvelteKit, TypeScript, Supabase, Drizzle and modern web development.

Key Principles

Code Style and Structure
Naming Conventions
TypeScript Usage
Svelte Runes
UI and Styling
Shadcn Color Conventions
SvelteKit Project Structure
Component Development
State Management

Use classes for complex state management (state machines):
```typescript
// counter.svelte.ts
class Counter {
  count = $state(0);
  incrementor = $state(1);
  increment() {
    this.count += this.incrementor;
  }
  resetCount() {
    this.count = 0;
  }
  resetIncrementor() {
    this.incrementor = 1;
  }
}
export const counter = new Counter();

Signals

Avg rating0.0
Reviews0
Favorites0

Information

Repository
PatrickJS/awesome-cursorrules
Author
PatrickJS
Last Sync
3/13/2026
Repo Updated
3/13/2026
Created
1/14/2026

Reviews (0)

No reviews yet. Be the first to review this skill!

Related Skills

Related Guides