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/inboxpraveen/Minimize-Cursor-CostWrote 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/inboxpraveen/minimize-cursor-cost/svelte)<a href="https://agentmods.dev/rules/inboxpraveen/minimize-cursor-cost/svelte"><img src="https://agentmods.dev/badge/rules/inboxpraveen/minimize-cursor-cost/svelte.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.00000 | $0.00450 |
| Opus 5 | $0.00000 | $0.00225 |
| Sonnet 5 | $0.00000 | $0.00090 |
| Haiku 4.5 | $0.00000 | $0.00045 |
Grade A, and why
svelte 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.
What it actually says
Svelte / SvelteKit Rules
Detect the version
- Svelte 4 (stores,
$:reactive statements) vs Svelte 5 (runes:$state,$derived,$effect). - Don't mix runes and pre-runes reactivity in the same component.
- Don't migrate to runes unless asked.
Output Format
- Single change → show only the affected
<script>, markup, or<style>block. - Don't reprint imports unless adding new ones.
Reactivity
- Svelte 4: match existing
$:style. Don't replace withderivedstores unless asked. - Svelte 5: match existing rune usage exactly. Don't introduce
$effectif$derivedis enough.
Props & Events
- Don't rename props or dispatched events.
- Svelte 5: match
$props()destructuring style. - Svelte 4: match
export letusage; don't switch to$$props/$$restPropsunless needed.
SvelteKit-Specific
- App routes: match existing
+page.svelte/+page.server.ts/+page.tssplit. - Don't move logic from
+page.server.tsto+page.ts(or vice versa) without flagging. - Match existing
loadfunction shape (return shape, await pattern). - Don't introduce form actions if the existing page uses an API endpoint.
Stores
- Match existing store style: writable/readable/derived stores vs context API vs runes.
- Don't introduce a new store library.
Styling
- Match existing scoped vs
:global()usage. - Don't switch CSS framework (Tailwind / vanilla / preprocessor).
Never
- Don't add
<svelte:options accessors />unless needed. - Don't add transitions / animations to satisfy "polish".
- Don't change adapter (
@sveltejs/adapter-*) while doing a feature task.
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 · 45 lines · 0 tokens per session scan A 124720efadd1
svelte is a cursor rule published in the GitHub repository inboxpraveen/Minimize-Cursor-Cost (7 stars, last pushed yesterday), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 450 tokens. 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-31.
Other cursor rules, from other repositories
vue
Vue 3: Composition API, Pinia, script setup.
sveltekit
SvelteKit: load functions, form actions, +page/+layout patterns.
nuxt
Nuxt 3: composables, server routes, auto-imports.
svelte
Svelte 5: runes, reactivity, stores.
vuejs
A set of guidance for Vue.js, a JavaScript framework for building user interfaces. It covers component structure, the Composition API, state management, and performance.
vue
A set of project rules for Vue.js, a JavaScript framework for building user interfaces. It covers component names, structure, properties, and event names.