sveltekit-remote-functions
Installation
SKILL.md
IMPORTANT: Keep description on ONE line for Claude Code compatibility
prettier-ignore
SvelteKit Remote Functions
Quick Start
File naming: *.remote.ts for remote function files
Which function? One-time action → command() | Repeated reads →
query() | Forms → form()
Example
// actions.remote.ts
import { command } from '$app/server';
import * as v from 'valibot';
Related skills