Borrowing it
Nothing to install: this file belongs to dwalleck/catalyst. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/dwalleck/catalyst/main/.claude/skills/svelte-skill/SKILL.mdgit clone --depth 1 https://github.com/dwalleck/catalystWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/dwalleck/catalyst/svelte-skill)<a href="https://agentmods.dev/skills/dwalleck/catalyst/svelte-skill"><img src="https://agentmods.dev/badge/skills/dwalleck/catalyst/svelte-skill.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00022 | $0.04334 |
| Opus 5 | $0.00011 | $0.02167 |
| Sonnet 5 | $0.00004 | $0.00867 |
| Haiku 4.5 | $0.00002 | $0.00433 |
Grade A, and why
svelte-skill scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 437 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Svelte Development Skill
Expert guidance for building modern web applications with Svelte 5
This skill provides comprehensive documentation for Svelte 5, the revolutionary web framework that compiles declarative components into highly optimized JavaScript. Use this skill when working with .svelte files, implementing reactive state management, or building component-based user interfaces.
What is Svelte?
Svelte is a compiler-based framework for building user interfaces. Unlike traditional frameworks that do their work in the browser, Svelte shifts that work into a compile step that happens at build time. This means:
- No virtual DOM - Svelte compiles components to highly efficient imperative code
- True reactivity - Reactive values update automatically without manual subscriptions
- Small bundle sizes - Only the code you use is included
- Simple syntax - Familiar HTML, CSS, and JavaScript with minimal boilerplate
Quick Start
Creating a new Svelte project with SvelteKit:
npx sv create myapp
cd myapp
npm install
npm run dev
Basic component structure:
<script>
let count = $state(0);
function increment() {
count++;
}
</script>
<button onclick={increment}>
Clicks: {count}
</button>
<style>
button {
font-size: 1.5em;
padding: 0.5em 1em;
}
</style>
When to Use This Skill
Activate this skill when:
- Creating or editing
.sveltecomponent files - Implementing reactive state with runes (
$state,$derived,$effect) - Working with component props and two-way bindings
- Using template syntax (conditionals, loops, await blocks)
- Styling components with scoped CSS
- Integrating with SvelteKit for full-stack applications
- Migrating from Svelte 4 to Svelte 5
- Debugging reactivity or component lifecycle issues
Core Concepts Overview
1. Components → See resources/components.md
.sveltefile structure (<script>, markup,<style>)- Component lifecycle and instantiation
.svelte.jsand.svelte.tsmodules for shared reactive logic
What ships with it
26 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- README.md 6.3 KB
- resources/advanced-concepts-1.md 11 KB
- resources/advanced-concepts-2.md 13 KB
- resources/compiler-errors-1.md 9.0 KB
- resources/compiler-errors-2.md 6.3 KB
- resources/compiler-warnings-1.md 15 KB
- resources/compiler-warnings-2.md 15 KB
- resources/components.md 2.7 KB
- resources/directives-animations.md 20 KB
- resources/directives-bind-use.md 17 KB
- resources/faqs-1.md 17 KB
- resources/faqs-2.md 9.0 KB
- resources/migration-svelte4.md 12 KB
- resources/migration-svelte5-1.md 19 KB
- resources/migration-svelte5-2.md 23 KB
- resources/runes-derived-effect.md 19 KB
- resources/runes-props-utilities.md 13 KB
- resources/runes-state.md 10 KB
- resources/runtime-errors-1.md 12 KB
- resources/runtime-errors-2.md 13 KB
- resources/special-elements.md 9.5 KB
- resources/styling.md 4.9 KB
- resources/template-control-flow.md 14 KB
- resources/template-snippets.md 21 KB
- resources/typescript.md 9.7 KB
- skill-rules.json 1.3 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 437 lines · 22 tokens per session scan A 8af4ef105598
svelte-skill is a skill published in the GitHub repository dwalleck/catalyst (11 stars, last pushed 9mo ago), licensed MIT. It adds 22 tokens to every session and 4,334 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
svelte-development
Comprehensive Svelte development skill covering reactivity runes, components, stores, lifecycle, transitions, and modern Svelte 5 patterns.
shadcn-svelte
Manages shadcn-svelte components and projects — adding, updating, fixing, debugging, styling, and composing UI. Provides project context, component docs, and usage examples. Applies when working with shadcn-svelte, the CLI, design-system presets, or any project with a components.json file. Also triggers for…
frontend-conventions
Frontend convention reference (SvelteKit / Svelte 5). Auto-injected into frontend-aware agents - not user-invocable.
shiny-for-r
Building, styling, testing, debugging, or observing a Shiny for R app - library(shiny), shinyApp(), runApp(). Index skill: read this, then open the linked reference for the task. Covers reactivity (reactive/observe/req/isolate/bindEvent); modules; async promises and ExtendedTask; bslib layouts, navigation, cards…
svelte
Svelte 5 - Reactive UI framework with compiler magic, Runes API, SvelteKit full-stack framework, SSR/SSG, minimal JavaScript.
svelte-expert
Expert knowledge in Svelte framework, SvelteKit, reactivity system, compiled approach, and building performant web applications. Use when the user mentions SvelteKit, reactivity, compiler, frontend, performance, or JavaScript, or when the task involves Svelte Fundamentals, Reactivity System, Installation and Setup, or…