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.
npx skills add joshuadavidthomas/agent-skills --skill svelte5git clone --depth 1 https://github.com/joshuadavidthomas/agent-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/skills/joshuadavidthomas/agent-skills/svelte5)<a href="https://agentmods.dev/skills/joshuadavidthomas/agent-skills/svelte5"><img src="https://agentmods.dev/badge/skills/joshuadavidthomas/agent-skills/svelte5/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/skills/joshuadavidthomas/agent-skills/svelte5"><img src="https://agentmods.dev/badge/skills/joshuadavidthomas/agent-skills/svelte5.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to high
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- high Prompt Injection · line 37 Hidden instructions were detected in comments or invisible text. These could contain malicious directives. Manual review is recommended.Fix: Audit all comments and invisible characters. Remove any instructions that direct the agent to perform unauthorized actions. Use plain, reviewable content.
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.00180 | $0.02438 |
| Opus 5 | $0.00090 | $0.01219 |
| Sonnet 5 | $0.00036 | $0.00488 |
| Haiku 4.5 | $0.00018 | $0.00244 |
Grade A, and why
svelte5 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 12d 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.
How it starts
The opening of the file, as written. The whole thing — 142 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Think in Svelte 5
You already know Svelte syntax. This skill changes your defaults — what you reach for first when designing a component, placing state, modeling reactivity, and reviewing UI code.
The core failure mode is Svelte that compiles but thinks like React, Vue, or Svelte 4 — effects standing in for derived values and events, props mirrored into state, global stores by reflex, two-way binding as the default, clickable divs, Svelte 4 component APIs in new code.
The component is a small reactive program with visible dependencies. Keep dataflow direct, state ownership obvious, and markup semantic; let the compiler and the DOM do the work.
This skill is the general-purpose entry point for Svelte component review; for SvelteKit-level concerns, also use sveltekit (see Cross-References).
Treat these as strong defaults, not rigid laws: when unsure, choose the approach that makes ownership, dependencies, and user semantics more explicit.
How Svelte Thinks
Make reactivity visible
1. Reactivity is read-tracked. A $derived/$effect depends on what it reads while running; if one reruns unexpectedly, inspect its reads, not a dependency array. See references/read-tracked-reactivity.md.
2. Derived state is $derived, not $effect. Pure functions of other state get derived; effects are for side effects, not keeping variables in sync. See references/effect-driven-state.md.
<!-- ❌ effect writing derived state -->
let doubled = $state(0);
$effect(() => { doubled = count * 2; });
<!-- ✅ derive it -->
let doubled = $derived(count * 2);
3. Effects are escape hatches. Before $effect, check for a derived value, an event handler, or a bind: getter/setter. Use it only to touch the outside world — subscriptions, timers, observers, imperative APIs, logging — and return cleanup.
4. Runes are statically analyzable. Compiler syntax, not runtime hooks — reusable state becomes .svelte.ts classes and factories, not custom hooks. See references/static-runes.md.
What ships with it
37 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- README.md 4.5 KB
- references/actions-vs-components.md 2.3 KB
- references/actions.md 2.2 KB
- references/attachments.md 1.4 KB
- references/bindable-by-default.md 2.1 KB
- references/bindings-and-directives.md 3.4 KB
- references/class-state-common-mistakes.md 5.3 KB
- references/class-state-patterns.md 6.3 KB
- references/class-state-ssr-safety.md 5.6 KB
- references/component-patterns.md 4.8 KB
- references/context-identity.md 2.0 KB
- references/context-vs-scoped-state.md 5.6 KB
- references/debugging.md 1.9 KB
- references/deep-state-without-immutable-ceremony.md 2.1 KB
- references/effect-driven-state.md 5.0 KB
- references/imperative-api.md 1.9 KB
- references/prop-mirroring.md 2.0 KB
- references/read-tracked-reactivity.md 2.0 KB
- references/runes-common-mistakes.md 10 KB
- references/runes-component-api.md 7.6 KB
- references/runes-reactivity-patterns.md 7.3 KB
- references/semantic-html-first.md 1.9 KB
- references/shadcn-svelte-forms.md 5.8 KB
- references/snippets-as-render-functions.md 2.0 KB
- references/snippets-vs-slots.md 8.4 KB
- references/special-elements.md 2.0 KB
- references/ssr-state-leaks.md 2.0 KB
- references/state-ownership.md 2.9 KB
- references/static-runes.md 2.1 KB
- references/stores.md 2.1 KB
- references/svelte4-to-5-migration.md 7.6 KB
- references/svelte5-syntax-discipline.md 2.5 KB
- references/template-tags.md 2.2 KB
- references/testing.md 2.0 KB
- references/transitions-animations.md 1.8 KB
- references/typescript.md 2.4 KB
- references/wrapper-components-preserve-html.md 2.2 KB
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.
- 12d ago First seen · 142 lines · 180 tokens per session scan A cf8ec3b219b1
svelte5 is a skill published in the GitHub repository joshuadavidthomas/agent-skills (49 stars, last pushed 1mo ago), licensed MIT. It adds 180 tokens to every session and 2,438 once invoked, about $0.0009 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.
Other skills, from other repositories
vue-best-practices
A review checklist for Vue 2 and Vue 3 components, covering component names, prop declarations, TypeScript casts, API styles and complex template expressions.
frontend-code-doctor
A front-end code review procedure for uni-app, Vue 3, React, and TypeScript projects. It checks code for correctness, security, speed, translation support, and accessibility, meaning whether people with disabilities can use it.
standards-to-tooling
Translates project coding standards into concrete linting and formatting tool configurations. Given human-readable conventions (from AGENTS.md, code review guidelines, or team standards), this skill produces ESLint, Prettier, Biome, TypeScript, and other tool configs that enforce them automatically. Covers discovery…
Component Test Scaffold (Vue.js)
Generate Vue.js component test skeletons (Vue Test Utils) from specifications.
review-frontend
Performs a strict code review of the Svelte 5 frontend code (files, diffs, or snippets). Trigger whenever the user shares frontend code (Svelte, TypeScript, CSS) and asks for a review, feedback, or says "review this" — including partial snippets.
fe-framework-coding-standard
Standardized frontend implementation guidance for FE Dev using the SRS-declared Frontend-Framework. Use when coding, refactoring, or reviewing UI work in React Native, ReactJS, Flutter, Vue.js, Angular, or Next.js; FE Dev reads docs/SRS.md Frontend-Framework plus §3.4.2/§3.4.5 for multi-app projects, then selects the…