Claude skill providing 24 searchable guides for building full-stack web applications with SvelteKit 2, Svelte 5 runes, and Tailwind CSS v4, with integration-specific documentation covering setup, deployment, and common challenges.
git clone https://github.com/claude-skills/sveltekit-svelte5-tailwind-skill.gitThis skill provides comprehensive, searchable documentation for building modern web applications using SvelteKit 2, Svelte 5 (with runes), and Tailwind CSS v4. It addresses integration challenges specific to combining these three frameworks, including Svelte 5's new reactivity system with server-side rendering constraints and Tailwind v4's Vite plugin architecture. The skill includes 24 problem-focused guides covering setup, core concepts, forms and styling, deployment adapters, migration paths, and troubleshooting. Developers working with this modern stack can use the 5-stage search methodology to research recommended patterns before implementation, ensuring proper configuration of plugin order, CSS imports, rune usage in SSR contexts, and form state management.
The skill uses a 5-stage search process: discover available indexes, load relevant index files from references/ or docs/ collections, reason about the 3-4 most relevant guides, read detailed section metadata, and finally load specific sections. Start by searching the documentation to understand the recommended approach, then implement solutions using the discovered patterns and code examples.
Setting up new SvelteKit projects with Svelte 5 and Tailwind v4 configuration
Migrating existing Svelte 4 or Tailwind v3 projects to the latest versions
Debugging SSR issues with Svelte 5 runes and server-side constraints
Implementing progressive enhancement with form actions and enhanced reactivity
No install command available. Check the GitHub repository for manual installation instructions.
git clone https://github.com/claude-skills/sveltekit-svelte5-tailwind-skillCopy the install command above and run it in your terminal.
Launch Claude Code, Cursor, or your preferred AI coding agent.
Use the prompt template or examples below to test the skill.
Adapt the skill to your specific use case and workflow.
Create a SvelteKit 2 project with Svelte 5 and Tailwind CSS v4. The project should include [FEATURES] and follow [DESIGN_GUIDELINES]. Provide the complete setup instructions, including package installations, configuration files, and basic project structure. Ensure the project is optimized for [COMPANY] in the [INDUSTRY] sector.
# SvelteKit 2 with Svelte 5 and Tailwind CSS v4 Setup Guide
## Project Setup
1. **Initialize the project**:
```bash
npm create svelte@latest [PROJECT_NAME]
cd [PROJECT_NAME]
npm install
```
2. **Install Svelte 5 and Tailwind CSS**:
```bash
npm install svelte@next tailwindcss postcss autoprefixer
npx tailwindcss init
```
## Configuration
### `tailwind.config.cjs`
```javascript
module.exports = {
content: [
'./src/**/*.{html,js,svelte,ts}'
],
theme: {
extend: {}
},
plugins: [],
}
```
### `postcss.config.cjs`
```javascript
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {}
}
}
```
## Project Structure
```
/src
/app.html
/app.js
/routes
/+page.svelte
/+layout.svelte
/static
/lib
```
## Running the Project
```bash
npm run dev
```
Visit `http://localhost:5173` to see your project in action.Real-time collaboration features for SaaS products
Get more done every day with Microsoft Teams – powered by AI
Automate security compliance and monitor real-time security posture seamlessly.
Automate your spreadsheet tasks with AI power
Agentic AI Workflow platform
Connected workspace for docs, wikis, and projects
Take a free 3-minute scan and get personalized AI skill recommendations.
Take free scan