catalyst: Skill for Claude Code

.claude/skills/svelte-skill/SKILL.md

svelte-skill is a skill for Claude Code from dwalleck/catalyst. It costs 22 tokens per session (4,334 once invoked), scanned A, original, MIT.

A development guide for Svelte 5, a tool for building interactive websites with HTML, CSS, and JavaScript. It covers Svelte’s components, automatic updates, application structure, and current coding patterns.

In plain words
What is it for?
Use it while building Svelte components, managing changing data, creating SvelteKit projects, and implementing modern web interfaces.
Why use it?
It gives developers a consistent reference when creating or changing Svelte applications, especially when working with Svelte 5’s newer syntax.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is dwalleck/catalyst's own configuration. It tells Claude Code how to work on catalyst itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything catalyst configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/dwalleck/catalyst/main/.claude/skills/svelte-skill/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/dwalleck/catalyst

Made for: Claude Code.

Wrote 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.

agentmods badge for svelte-skill

README.md
[![agentmods](https://agentmods.dev/badge/skills/dwalleck/catalyst/svelte-skill.svg)](https://agentmods.dev/skills/dwalleck/catalyst/svelte-skill)
Your own site
<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>
Per session 22 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,334 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 8d ago against content hash 8af4ef105598, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

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.

.claude/skills/svelte-skill/SKILL.md · 437 lines

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 .svelte component 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. ComponentsSee resources/components.md

  • .svelte file structure (<script>, markup, <style>)
  • Component lifecycle and instantiation
  • .svelte.js and .svelte.ts modules for shared reactive logic

Read the full file on GitHub · 437 lines

Changes

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.

  1. 8d ago First seen · 437 lines · 22 tokens per session scan A 8af4ef105598

Subscribe to this mod's changes

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.

Related

Other skills, from other repositories

svelte-development

Comprehensive Svelte development skill covering reactivity runes, components, stores, lifecycle, transitions, and modern Svelte 5 patterns.

manutej/luxor-claude-marketplace · 31 tokens

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…

huntabyte/shadcn-svelte · 87 tokens

frontend-conventions

Frontend convention reference (SvelteKit / Svelte 5). Auto-injected into frontend-aware agents - not user-invocable.

fpindej/netrock · 27 tokens

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…

rstudio/shiny · 202 tokens

svelte

Svelte 5 - Reactive UI framework with compiler magic, Runes API, SvelteKit full-stack framework, SSR/SSG, minimal JavaScript.

bobmatnyc/claude-mpm-skills · 34 tokens

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…

personamanagmentlayer/pcl · 74 tokens