/** * @electric-sql/agent * * Agent skills for building apps with Electric. * This package provides AI agent skills that help coding assistants * build local-first applications with Electric and TanStack DB. */ declare const SKILLS: readonly ["electric", "electric-quickstart", "electric-tanstack-integration", "electric-security-check", "electric-go-live", "deploying-electric", "tanstack-start-quickstart"]; type SkillName = (typeof SKILLS)[number]; declare const AGENT_SKILL_DIRS: readonly [".claude/skills", ".cursor/skills", ".codex/skills", ".github/skills", ".windsurf/skills"]; type AgentDir = (typeof AGENT_SKILL_DIRS)[number]; export { AGENT_SKILL_DIRS, type AgentDir, SKILLS, type SkillName };