svelte-sveltekit-expert

svelte-sveltekit-expert is a skill for Claude Code, Codex from roedyrustam/vibes-plug. It costs 87 tokens per session (824 once invoked), scanned A, original, MIT.

A development guide for Svelte 5 and SvelteKit 2+, tools for building web applications with reactive interfaces and server-side rendering (generating pages on the server).

In plain words
What is it for?
Use it to build or migrate Svelte applications, create forms and server actions, configure routing and data loading, and choose SSR, static generation, or related rendering modes.
Why use it?
It helps developers use Svelte’s current reactive features, choose how pages are rendered, and migrate projects from Svelte 4.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to build or migrate Svelte applications, create forms and server actions, configure routing and data loading, and choose SSR, static generation, or related rendering modes.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/roedyrustam/vibes-plug/svelte-sveltekit-expert
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add roedyrustam/vibes-plug --skill svelte-sveltekit-expert
Clone the repo
git clone --depth 1 https://github.com/roedyrustam/vibes-plug

Made for: Claude Code, Codex.

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-sveltekit-expert

README.md
[![agentmods](https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/svelte-sveltekit-expert/github.svg)](https://agentmods.dev/skills/roedyrustam/vibes-plug/svelte-sveltekit-expert)
Your own site
<a href="https://agentmods.dev/skills/roedyrustam/vibes-plug/svelte-sveltekit-expert"><img src="https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/svelte-sveltekit-expert/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for svelte-sveltekit-expert

Your own site · 80×15
<a href="https://agentmods.dev/skills/roedyrustam/vibes-plug/svelte-sveltekit-expert"><img src="https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/svelte-sveltekit-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 87 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 824 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00087 $0.00824
Opus 5 $0.00044 $0.00412
Sonnet 5 $0.00017 $0.00165
Haiku 4.5 $0.00009 $0.00082

Measured today against content hash 829cbba6f4da, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

svelte-sveltekit-expert 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 today.

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.

skills/svelte-sveltekit-expert/SKILL.md · 92 lines

How it starts

The opening of the file, as written. The whole thing — 92 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Svelte & SvelteKit Expert (2026 Edition)

English | Bahasa Indonesia


English

Orchestration & Integration

  • tailwind-expert: Tailwind CSS v4 integration with SvelteKit.
  • performance-web-vitals: Svelte's compile-time optimizations and zero-overhead reactivity.
  • e2e-testing-expert: Playwright testing for SvelteKit applications.
  • typescript-expert: TypeScript integration with Svelte 5 Runes.

Description

Expert guide for building high-performance applications with Svelte 5 and SvelteKit 2+. Covers Runes ($state, $derived, $effect, $props), server-first architecture, form actions, load functions, streaming, SSR/SSG/ISR rendering modes, and migration from Svelte 4.

Trigger Conditions

  • Building applications with Svelte or SvelteKit.
  • Migrating from Svelte 4 to Svelte 5 Runes.
  • Choosing between Svelte and React/Vue for a new project.
  • Implementing server-side rendering with SvelteKit.

Svelte 5 Runes

<script lang="ts">
  // Svelte 5 Runes — fine-grained reactivity
  let count = $state(0);
  let doubled = $derived(count * 2);

  $effect(() => {
    console.log(`Count changed to ${count}`);
  });

  // Props with Runes
  let { title, onSubmit }: { title: string; onSubmit: (v: number) => void } = $props();
</script>

<h1>{title}</h1>
<button onclick={() => count++}>Count: {count} (doubled: {doubled})</button>
<button onclick={() => onSubmit(count)}>Submit</button>

SvelteKit Server Patterns

// src/routes/posts/+page.server.ts
import type { PageServerLoad, Actions } from './$types';
import { fail } from '@sveltejs/kit';

export const load: PageServerLoad = async ({ fetch }) => {
  const posts = await fetch('/api/posts').then((r) => r.json());
  return { posts };
};

export const actions: Actions = {
  create: async ({ request }) => {
    const data = await request.formData();
    const title = data.get('title');
    if (!title) return fail(400, { error: 'Title required' });
    // Create post...
    return { success: true };
  },
};

Read the full file on GitHub · 92 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. today Changed 829cbba6f4da
  2. 8d ago First seen · 92 lines · 87 tokens per session scan A c882f801a28a

Subscribe to this mod's changes

svelte-sveltekit-expert is a skill published in the GitHub repository roedyrustam/vibes-plug (53 stars, last pushed today), licensed MIT. It adds 87 tokens to every session and 824 once invoked, about $0.0004 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-09-03.

Related

Other skills, from other repositories