canonical__vvelte-5

canonical__vvelte-5 is a cursor rule for Cursor from Bilal140202/the-lord-of-the-skills. It costs 0 tokens per session (1,768 once invoked), scanned A, a copy of svelte-5, MIT.

A guide to Svelte 5 development using Runes, Svelte's syntax for reactive state, computed values, effects, properties, events, and snippets.

In plain words
What is it for?
Use it when managing component state, derived values, side effects, properties, callbacks, and reusable template content.
Why use it?
It helps developers use Svelte 5's current patterns consistently instead of mixing them with older approaches.

Cursor rule for Cursor

Written for Cursor: a Cursor rule (.mdc).

Good fit Use it when managing component state, derived values, side effects, properties, callbacks, and reusable template content.

Compare 6 cursor rules from other repositories ↓
Install with agentmods
npx agentmods add rules/bilal140202/the-lord-of-the-skills/canonical__vvelte-5
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.

Clone the repo
git clone --depth 1 https://github.com/Bilal140202/the-lord-of-the-skills

Made for: Cursor.

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 canonical__vvelte-5

README.md
[![agentmods](https://agentmods.dev/badge/rules/bilal140202/the-lord-of-the-skills/canonical__vvelte-5/github.svg)](https://agentmods.dev/rules/bilal140202/the-lord-of-the-skills/canonical__vvelte-5)
Your own site
<a href="https://agentmods.dev/rules/bilal140202/the-lord-of-the-skills/canonical__vvelte-5"><img src="https://agentmods.dev/badge/rules/bilal140202/the-lord-of-the-skills/canonical__vvelte-5/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 canonical__vvelte-5

Your own site · 80×15
<a href="https://agentmods.dev/rules/bilal140202/the-lord-of-the-skills/canonical__vvelte-5"><img src="https://agentmods.dev/badge/rules/bilal140202/the-lord-of-the-skills/canonical__vvelte-5.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 1,768 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 100% copy Near-identical to another mod 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.00000 $0.01768
Opus 5 $0.00000 $0.00884
Sonnet 5 $0.00000 $0.00354
Haiku 4.5 $0.00000 $0.00177

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

Security

Grade A, and why

canonical__vvelte-5 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 9d 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.

Origin

This is a copy

100% identical to svelte-5 — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/gondor/cursor/Renvia-code__best-cursor-rules/canonical__vvelte-5.mdc · 379 lines

How it starts

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

Svelte 5 Best Practices

Overview

Feature Svelte 5
Reactivity Runes ($state, $derived, $effect)
Props $props() rune
Events Callback props
Snippets Replace slots

Runes (New Reactivity System)

$state - Reactive State

<script>
  // Simple state
  let count = $state(0)
  
  // Object state (deeply reactive)
  let user = $state({
    name: 'John',
    email: '[email protected]'
  })
  
  function increment() {
    count++  // Direct mutation works
  }
  
  function updateName(name) {
    user.name = name  // Deep reactivity
  }
</script>

<button onclick={increment}>
  Count: {count}
</button>

$derived - Computed Values

<script>
  let count = $state(0)
  let doubled = $derived(count * 2)
  
  // Complex derivations
  let items = $state([1, 2, 3, 4, 5])
  let total = $derived(items.reduce((a, b) => a + b, 0))
  let evenItems = $derived(items.filter(n => n % 2 === 0))
</script>

<p>Count: {count}, Doubled: {doubled}</p>

$effect - Side Effects

<script>
  let count = $state(0)
  
  // Runs when dependencies change
  $effect(() => {
    console.log('Count changed:', count)
    
    // Cleanup function (optional)
    return () => {
      console.log('Cleaning up')
    }
  })
  
  // Pre-effect (runs before DOM updates)
  $effect.pre(() => {
    // Useful for measuring DOM before updates
  })
</script>

Props

Basic Props with $props()

<script>
  let { name, count = 0, onUpdate } = $props()
</script>

<div>
  <h2>{name}</h2>
  <p>Count: {count}</p>
  <button onclick={() => onUpdate?.(count + 1)}>
    Increment
  </button>
</div>

TypeScript Props

<script lang="ts">
  interface Props {
    name: string
    count?: number
    onUpdate?: (value: number) => void
  }
  
  let { name, count = 0, onUpdate }: Props = $props()
</script>

Spread Props

<script>
  let { class: className, ...rest } = $props()
</script>

<div class={className} {...rest}>
  Content
</div>

Read the full file on GitHub · 379 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. 9d ago First seen · 379 lines · 0 tokens per session scan A c4d0aa26d2fa

Subscribe to this mod's changes

canonical__vvelte-5 is a cursor rule published in the GitHub repository Bilal140202/the-lord-of-the-skills (4 stars, last pushed 6d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,768 tokens. A static security scan graded it A with 0 findings. It is 100% identical to svelte-5, differing in 0 lines, and is treated as a copy.