auth

Authentication rules for a web application that uses Clerk, a service for user accounts, sign-in, sessions, and access control.

In plain words
What is it for?
Use them when adding or reviewing login flows, protected pages, server-side checks, user sessions, permissions, or Clerk integrations.
Why use it?
They keep sign-in checks, permissions, and Clerk usage consistent across the application. This reduces the risk of protecting some pages or actions differently from others.

Cursor rule for Cursor

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/materialize-labs/ai-optimized-starter-app/auth
Clone the repo
git clone --depth 1 https://github.com/materialize-labs/ai-optimized-starter-app

Made for: Cursor.

Per session 8 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 910 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00008 $0.00910
Opus 5 $0.00004 $0.00455
Sonnet 5 $0.00002 $0.00182
Haiku 4.5 $0.00001 $0.00091

Measured 2d ago against content hash 754f97ddea98, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

auth scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/rules/auth.mdc · 177 lines

How it starts

The opening of the file, as written. The whole thing — 177 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Authentication Architecture

This document outlines our authentication approach using Clerk. Following these guidelines ensures consistent, secure user authentication throughout the application.

Core Principles

  1. Security First: Implement proper authentication checks for all protected resources
  2. Seamless Experience: Provide smooth authentication flows with minimal friction
  3. Consistent Patterns: Use standardized approaches for auth across the application
  4. Explicit Permissions: Make access controls clear and intentional

Clerk Integration

Our application uses Clerk for authentication, which provides:

  • User management and authentication
  • Social login providers
  • Session management
  • User profile management
  • Security features like MFA

Server-Side Authentication

Importing Auth Helpers

Always use the correct imports for server components and server actions:

// In server components
import { auth } from "@clerk/nextjs/server"

// In middleware or other server contexts
import { getAuth } from "@clerk/nextjs/server"

Usage in Server Components

When accessing authentication in server components:

// app/dashboard/page.tsx
import { auth } from "@clerk/nextjs/server"
import { redirect } from "next/navigation"

export default async function DashboardPage() {
  const { userId } = auth()
  
  if (!userId) {
    return redirect("/sign-in")
  }
  
  // Continue with authenticated page rendering
  return (
    <div>
      <h1>Dashboard</h1>
      {/* Dashboard content */}
    </div>
  )
}

Usage in Server Actions

When using authentication in server actions, always await the auth helper:

// actions/notes.ts
"use server"

import { auth } from "@clerk/nextjs/server"
import { db } from "@/db/db"
import { notesTable } from "@/db/schema/notes"
import { ActionState } from "@/types/server-action"

export async function createNote(
  content: string
): Promise<ActionState<{ id: string }>> {
  try {
    // Get authenticated user
    const { userId } = await auth()
    
    if (!userId) {
      return {
        isSuccess: false,
        message: "Authentication required"
      }
    }
    
    // Create note for authenticated user
    const [note] = await db.insert(notesTable)
      .values({ content, userId })
      .returning({ id: notesTable.id })
    
    return {
      isSuccess: true,
      message: "Note created successfully",
      data: { id: note.id }
    }
  } catch (error) {
    console.error("Failed to create note:", error)

    return {
      isSuccess: false,
      message: "Failed to create note"
    }
  }
}

Read the full file on GitHub · 177 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 177 lines · 8 tokens per session scan A 754f97ddea98

Subscribe to this mod's changes

auth is a cursor rule published in the GitHub repository materialize-labs/ai-optimized-starter-app (16 stars, last pushed 1y ago), licensed MIT. It adds 8 tokens to every session and 910 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.