nextjs-app-router

nextjs-app-router is a cursor rule for Cursor from Farzannajipour/cursor-react-rules. It costs 1,200 tokens per session, scanned A, original, MIT.

A set of coding rules for building Next.js 14 or newer applications with the App Router, TypeScript, Tailwind CSS, and related tools. The App Router is Next.js's newer way to organize pages and server-side code.

In plain words
What is it for?
Creating and reviewing Next.js pages and React components, deciding when browser code is needed, and using Server Components, Server Actions, Prisma, and NextAuth.js.
Why use it?
It keeps components, data fetching, authentication, database access, and browser-only code consistent with the project's chosen setup.

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/farzannajipour/cursor-react-rules/nextjs-app-router
Clone the repo
git clone --depth 1 https://github.com/Farzannajipour/cursor-react-rules

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for nextjs-app-router

README.md
[![agentmods](https://agentmods.dev/badge/rules/farzannajipour/cursor-react-rules/nextjs-app-router.svg)](https://agentmods.dev/rules/farzannajipour/cursor-react-rules/nextjs-app-router)
Your own site
<a href="https://agentmods.dev/rules/farzannajipour/cursor-react-rules/nextjs-app-router"><img src="https://agentmods.dev/badge/rules/farzannajipour/cursor-react-rules/nextjs-app-router.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,200 This file is loaded in full into every session.
When invoked 1,200 The same file — it is already loaded in full.
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.01200 $0.01200
Opus 5 $0.00600 $0.00600
Sonnet 5 $0.00240 $0.00240
Haiku 4.5 $0.00120 $0.00120

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

Security

Grade A, and why

nextjs-app-router 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 3d 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/nextjs-app-router.mdc · 215 lines

How it starts

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

Next.js 14+ with App Router, TypeScript, and Tailwind CSS

You are an expert Next.js developer specializing in the App Router, Server Components, and modern React patterns.

Tech Stack

  • Next.js 14+ (App Router)
  • React 18+ (Server Components)
  • TypeScript 5+
  • Tailwind CSS
  • Server Actions
  • Prisma (database ORM)
  • NextAuth.js (authentication)

Core Principles

Server Components by Default

  • All components in app/ are Server Components by default
  • Only add 'use client' when you need:
    • useState, useEffect, or other React hooks
    • Event handlers (onClick, onChange, etc.)
    • Browser APIs (window, localStorage, etc.)
    • Third-party libraries that use client features

Example Pattern:

// ✅ Server Component (default) - NO 'use client'
export default async function UserProfile({ userId }: { userId: string }) {
  const user = await db.user.findUnique({ where: { id: userId } });
  
  return (
    <div>
      <h1>{user.name}</h1>
      <UserActions user={user} /> {/* Client Component */}
    </div>
  );
}

// ✅ Client Component (only when needed)
'use client';

export function UserActions({ user }: { user: User }) {
  const [isFollowing, setIsFollowing] = useState(user.isFollowing);
  
  return (
    <button onClick={() => setIsFollowing(!isFollowing)}>
      {isFollowing ? 'Unfollow' : 'Follow'}
    </button>
  );
}

Data Fetching

Server Components (Preferred):

// app/users/[id]/page.tsx
export default async function UserPage({ params }: { params: { id: string } }) {
  // Fetch directly in component
  const user = await db.user.findUnique({
    where: { id: params.id },
    include: { posts: true }
  });

  if (!user) notFound();

  return <UserProfile user={user} />;
}

// Enable ISR
export const revalidate = 3600; // Revalidate every hour

Server Actions (Mutations)

// lib/actions/user.ts
'use server';

import { revalidatePath } from 'next/cache';
import { db } from '@/lib/db';

export async function updateUserProfile(userId: string, data: ProfileData) {
  const user = await db.user.update({
    where: { id: userId },
    data: {
      name: data.name,
      bio: data.bio,
    },
  });

  // Revalidate affected pages
  revalidatePath(`/users/${userId}`);
  
  return { success: true, user };
}

Read the full file on GitHub · 215 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. 3d ago First seen · 215 lines · 1,200 tokens per session scan A 3955e48ce0ed

Subscribe to this mod's changes

nextjs-app-router is a cursor rule published in the GitHub repository Farzannajipour/cursor-react-rules (3 stars, last pushed 7mo ago), licensed MIT. It adds 1,200 tokens to every session, about $0.0060 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-31.