supabase-auth
Installation
SKILL.md
🚨 CRITICAL: DEPRECATED PATTERNS 🚨
NEVER generate these patterns - they BREAK the application:
// ❌ NEVER USE - BREAKS APPLICATION
{
cookies: {
get(name: string) { // ❌ BREAKS
return cookieStore.get(name)
},
set(name: string, value: string) { // ❌ BREAKS
cookieStore.set(name, value)
},
remove(name: string) { // ❌ BREAKS
cookieStore.remove(name)
}
}
}