Back to list
artiefy

authentication-clerk

by artiefy

2🍴 1📅 Jan 23, 2026

SKILL.md


name: authentication-clerk description: Specialized skill for implementing authentication and user management with Clerk. Use when working on sign-in/sign-up flows, user roles, or access control.

Authentication with Clerk Skill

This skill provides expertise in implementing authentication and user management using Clerk in the Artiefy project.

When to Use This Skill

  • Setting up sign-in and sign-up pages
  • Managing user roles and permissions
  • Implementing protected routes
  • Handling user sessions and metadata
  • Integrating Clerk components in the UI

Key Features

  • Multi-role System: super-admin, admin, educador, estudiante
  • Protected Routes: Role-based access control
  • User Metadata: Store role information in publicMetadata
  • Custom Flows: Sign-in and sign-up pages

Patterns and Conventions

Role-Based Access

  • Roles stored in user.publicMetadata.role
  • Route protection in middleware or components
  • Dashboard routing based on role

Clerk Components

  • Use <ClerkProvider> in root layout
  • <SignIn /> and <SignUp /> components
  • <UserButton /> for user management

Environment Variables

  • All Clerk keys in src/env.ts
  • Validate with Zod schemas

Examples

Role-Based Routing

// src/app/page.tsx
import { currentUser } from '@clerk/nextjs/server';

export default async function HomePage() {
  const user = await currentUser();

  const dashboardRoute = getDashboardRoute(user?.publicMetadata?.role);

  redirect(dashboardRoute);
}

function getDashboardRoute(role: string | undefined) {
  switch (role) {
    case 'super-admin':
      return '/dashboard/super-admin';
    case 'admin':
      return '/dashboard/admin';
    case 'educador':
      return '/dashboard/educadores';
    default:
      return '/estudiantes';
  }
}

Protected Component

// src/components/ProtectedRoute.tsx
'use client';
import { useUser } from '@clerk/nextjs';
import { useRouter } from 'next/navigation';

export function ProtectedRoute({
  children,
  requiredRole,
}: {
  children: React.ReactNode;
  requiredRole?: string;
}) {
  const { user, isLoaded } = useUser();
  const router = useRouter();

  if (!isLoaded) return <div>Loading...</div>;

  if (!user) {
    router.push('/sign-in');
    return null;
  }

  if (requiredRole && user.publicMetadata?.role !== requiredRole) {
    router.push('/unauthorized');
    return null;
  }

  return <>{children}</>;
}

Sign-In Page

// src/app/sign-in/[[...sign-in]]/page.tsx
import { SignIn } from '@clerk/nextjs';

export default function SignInPage() {
  return (
    <div className="flex min-h-screen items-center justify-center">
      <SignIn routing="path" path="/sign-in" redirectUrl="/" />
    </div>
  );
}

Resources

  • Clerk Documentation
  • Project auth pages: src/app/sign-in/, src/app/sign-up/
  • Environment config: src/env.ts

Score

Total Score

40/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon