CATHERINE: Skill for Claude Code

.claude/skills/senior-nextjs-engineer/SKILL.md

senior-nextjs-engineer is a skill for Claude Code from Jm-Paunlagui/CATHERINE. It costs 141 tokens per session (1,491 once invoked), scanned A, original, Apache-2.0.

A set of working rules for building Next.js applications with the App Router, React 19, and Tailwind CSS. It guides choices about server and browser code, data loading, caching, and the design system.

In plain words
What is it for?
Use it when writing or reviewing Next.js pages, components, server actions, route handlers, and data-fetching code. It helps decide when code belongs on the server or in the browser and how cached data should be refreshed.
Why use it?
It reduces mistakes such as making too much code run in the browser, fetching data in the wrong place, or using inconsistent interface styles.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions CLAUDE.md.

This is Jm-Paunlagui/CATHERINE's own configuration. It tells Claude Code how to work on CATHERINE itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything CATHERINE configures →

Reuse

Borrowing it

Nothing to install: this file belongs to Jm-Paunlagui/CATHERINE. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/Jm-Paunlagui/CATHERINE/main/.claude/skills/senior-nextjs-engineer/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/Jm-Paunlagui/CATHERINE

Made for: Claude Code.

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 senior-nextjs-engineer

README.md
[![agentmods](https://agentmods.dev/badge/skills/jm-paunlagui/catherine/senior-nextjs-engineer/github.svg)](https://agentmods.dev/skills/jm-paunlagui/catherine/senior-nextjs-engineer)
Your own site
<a href="https://agentmods.dev/skills/jm-paunlagui/catherine/senior-nextjs-engineer"><img src="https://agentmods.dev/badge/skills/jm-paunlagui/catherine/senior-nextjs-engineer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for senior-nextjs-engineer

Your own site · 80×15
<a href="https://agentmods.dev/skills/jm-paunlagui/catherine/senior-nextjs-engineer"><img src="https://agentmods.dev/badge/skills/jm-paunlagui/catherine/senior-nextjs-engineer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 141 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,491 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00141 $0.01491
Opus 5 $0.00071 $0.00745
Sonnet 5 $0.00028 $0.00298
Haiku 4.5 $0.00014 $0.00149

Measured 5d ago against content hash 4ca30d771f18, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

senior-nextjs-engineer 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 5d 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.

.claude/skills/senior-nextjs-engineer/SKILL.md · 68 lines

How it starts

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

Senior Next.js Engineer (App Router + Tailwind CSS v4)

You are a Senior Next.js Engineer. App Router, React 19 Server Components, Tailwind CSS v4 with Aumovio Design System v3.1 tokens. Never compromise architectural integrity or design-system consistency for brevity.

Server vs Client Component decision table

  • Server Component (default) when: fetches data, reads secrets/env, renders static or server-derived content, has no interactivity, no browser-only APIs, no hooks (useState/useEffect/useRef).
  • Client Component ("use client") when: uses state/effects, event handlers, browser APIs, context providers, or third-party client libraries.
  • Push "use client" to the leaf — keep it as low in the tree as possible. Pass server-fetched data down as props; never make a whole page a client component to enable one button.

Data fetching & caching

  • Fetch in Server Components / Route Handlers, not in useEffect, whenever the data is not user-interaction-driven.
  • Use the fetch cache with explicit intent: { cache: 'force-cache' } (static), { cache: 'no-store' } (dynamic), or { next: { revalidate: N } } (ISR).
  • Tag cached fetches with { next: { tags: [...] } } and invalidate via revalidateTag(tag) / revalidatePath(path) inside Server Actions on mutation.
  • Know when a route opts into dynamic rendering (cookies(), headers(), searchParams, no-store) vs static — state which and why.

Server Actions

  • Mutations via Server Actions ("use server"), not client-side Axios calls, for form submissions and data writes.
  • Validate all inputs server-side (never trust the client). Revalidate affected cache tags/paths after the write. Return typed results; surface errors as UI states, not thrown stack traces.

Route handlers, streaming, metadata

  • Route Handlers (app/**/route.ts) for webhooks and API endpoints. Enforce the same auth/validation/rate-limit posture as the backend.
  • Use <Suspense> + streaming for slow data; provide skeleton fallbacks (Aumovio Skeleton).
  • SEO: generateMetadata per route; canonical URLs; OpenGraph. next/image with responsive sizes; next/font for zero-CLS fonts.

Read the full file on GitHub · 68 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. 5d ago First seen · 68 lines · 141 tokens per session scan A 4ca30d771f18

Subscribe to this mod's changes

senior-nextjs-engineer is a skill published in the GitHub repository Jm-Paunlagui/CATHERINE (2 stars, last pushed 6d ago), licensed Apache-2.0. It adds 141 tokens to every session and 1,491 once invoked, about $0.0007 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-09-05.

Related

Other skills, from other repositories

chakra-ui-builder

Build responsive, accessible UI components and layouts using Chakra UI v3, install or configure Chakra UI in new and existing projects, and design scalable themes using tokens, semantic tokens, recipes, and slot recipes. Use this skill whenever a user asks to build, create, or generate any UI component, page, form…

chakra-ui/chakra-ui · 214 tokens

column-pinning

Pin columns into logical start, center, and end regions with columnPinningFeature and renderer-owned sticky CSS. Load for RTL offsets, z-index, backgrounds, overflow, widths, gaps, or overlaps.

TanStack/table · 45 tokens

column-resizing

Wire columnResizingFeature, header.getResizeHandler, resize mode and direction, pointer or touch events, and performant CSS-variable updates. Load when resize state changes but widths do not, or large tables resize slowly.

TanStack/table · 47 tokens

ui-checkstyle

Run the exact ESLint + Prettier + organize-imports sequence that CI's UI Checkstyle workflow runs — on just the files the PR changed — and fail the task if any file ends up with a diff. Invoke after authoring or modifying any .ts, .tsx, .js, .jsx, or .json file under openmetadata-ui/src/main/resources/ui/src/…

open-metadata/OpenMetadata · 122 tokens

frontend-ui-dark-ts

Build dark-themed React applications using Tailwind CSS with custom theming, glassmorphism effects, and Framer Motion animations. Use when creating dashboards, admin panels, or data-rich interfaces with a refined dark aesthetic.

microsoft/skills · 48 tokens

moai-design-tools

Design tool integration specialist covering Figma MCP, Pencil renderer, and Pencil-to-code export. Use when fetching design context from Figma, rendering Pencil designs, or exporting to React/Tailwind code.

modu-ai/moai-adk · 45 tokens