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.
git clone --depth 1 https://github.com/Bilal140202/the-lord-of-the-skillsWrote 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/rules/bilal140202/the-lord-of-the-skills/canonical__vvelte-5)<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.
<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>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.00000 | $0.01768 |
| Opus 5 | $0.00000 | $0.00884 |
| Sonnet 5 | $0.00000 | $0.00354 |
| Haiku 4.5 | $0.00000 | $0.00177 |
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.
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.
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>
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.
- 9d ago First seen · 379 lines · 0 tokens per session scan A c4d0aa26d2fa
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.
Other cursor rules, from other repositories
svelte-5-vs-svelte-4-cursorrules-prompt-file
Cursor rules for comparing Svelte 5 and Svelte 4 development.
sveltekit-typescript-guide-cursorrules-prompt-file
Cursor rules for SvelteKit development with TypeScript integration.
javascript-astro-tailwind-css-cursorrules-prompt-f
Cursor rules for JavaScript development with Astro and Tailwind CSS integration.
nuxt
Nuxt 3/4 best practices with Vue 3, auto-imports, and server components.
svelte-5
Svelte 5 best practices with Runes, new reactivity system, and modern patterns.
vue-3
Vue 3 Composition API best practices with script setup, Pinia, and TypeScript.