Skip to main content
Back to the directory
sveltejs/ai-toolsSoftware EngineeringFrontend and Design

svelte-core-bestpractices

Only use the $state rune for variables that should be reactive — in other words, variables that cause an $effect , $derived or template expression to update. Everything else can be a normal variable.

SkillJury keeps community verdicts, source metadata, and external repository signals in separate lanes so ranking data never pretends to be a review.

SkillJury verdict
Pending

No approved reviews yet

Would recommend
Pending

Waiting on enough review volume

Install signal
1

Weekly or total install activity from catalog data

Sign in to review
0 review requests
Install command
npx skills add https://github.com/sveltejs/ai-tools --skill svelte-core-bestpractices
SkillJury does not have enough approved reviews to publish a community verdict yet. Source metadata and repository proof are still available above.
SkillJury Signal Summary

As of Apr 30, 2026, svelte-core-bestpractices has 1 weekly installs, 0 community reviews on SkillJury. Community votes currently stand at 0 upvotes and 0 downvotes. Source: sveltejs/ai-tools. Canonical URL: https://skills.sh/sveltejs/ai-tools/svelte-core-bestpractices.

Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
Only use the $state rune for variables that should be reactive — in other words, variables that cause an $effect , $derived or template expression to update. Everything else can be a normal variable. Objects and arrays ( $state({...}) or $state([...]) ) are made deeply reactive, meaning mutation will trigger updates. This has a trade-off: in exchange for fine-grained reactivity, the objects must be proxied, which has performance overhead. In cases where you're dealing with large objects that are only ever reassigned (rather than mutated), use $state.raw instead. This is often the case with API responses, for example. To compute something from state, use $derived rather than $effect : [!NOTE] $derived is given an expression, not a function. If you need to use a function (because the expression is complex, for example) use $derived.by .

Source description provided by the upstream listing. Community review signal and install context stay separate from this narrative layer.

Community reviews

Latest reviews

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does svelte-core-bestpractices do?

Only use the $state rune for variables that should be reactive — in other words, variables that cause an $effect , $derived or template expression to update. Everything else can be a normal variable.

Is svelte-core-bestpractices good?

svelte-core-bestpractices does not have approved reviews yet, so SkillJury cannot publish a community verdict.

Which AI agents support svelte-core-bestpractices?

svelte-core-bestpractices currently lists compatibility with Skills CLI.

Is svelte-core-bestpractices safe to install?

svelte-core-bestpractices has been scanned by security audit providers tracked on SkillJury. Check the security audits section on this page for detailed results from Socket.dev and Snyk.

What are alternatives to svelte-core-bestpractices?

Skills in the same category include grimoire-morpho-blue, conversation-memory, second-brain-ingest, zai-tts.

How do I install svelte-core-bestpractices?

Run the following command to install svelte-core-bestpractices: npx skills add https://github.com/sveltejs/ai-tools --skill svelte-core-bestpractices

Related skills

More from sveltejs/ai-tools

Related skills

Alternatives in Software Engineering