Comprehensive skill for building with SvelteKit 2, Svelte 5, and Tailwind CSS v4.
1.2.02026-03-16@sveltejs/kit 2.x, svelte 5.x, tailwindcss 4.xSKILL.md: integration workflow and usage guidanceagents/openai.yaml: UI metadata for skill pickersscripts/rebuild_search_indexes.py: rebuilds index.jsonl and sections.jsonlreferences/: 17 problem-focused guidesdocs/: 7 reference guidesindex.jsonl, sections.jsonl) for both collectionsSKILL.md frontmatter with the current skill spec (name + description only)agents/openai.yaml for UI metadata@source, @source inline(), and CSS-driven dark mode$props() and Svelte class objects/arrays in main guidancenpx sv add tailwindcss in quick start, while keeping manual setup as fallback# 1) scaffold
npx sv create my-app
cd my-app
# 2) add tailwind through the official Svelte addon
npx sv add tailwindcss
# 3) fallback manual path when you need explicit wiring
# npm install -D tailwindcss @tailwindcss/vite
# vite.config.js -> tailwindcss() must be before sveltekit()
# src/app.css -> @import "tailwindcss";
# src/routes/+layout.svelte -> import '../app.css'
# 4) run
npm run dev
browser checks and/or $effect().load + $props() to hydrate page state.SKILL.mdagents/openai.yamlscripts/rebuild_search_indexes.pyskill.manifest.jsonreferences/docs/MIT