nextjs-development

nextjs-development is a skill for Claude Code, Codex from jxoesneon/Ciel. It costs 23 tokens per session (540 once invoked), scanned A, original, Apache-2.0.

A set of practices for building React applications with Next.js, a framework that adds routing, server rendering, and build tools to React. It covers development with Turbopack, Server Components, data fetching, images, fonts, and bundle analysis.

In plain words
What is it for?
Building and optimizing Next.js applications, fetching data in server-rendered components, analyzing dependencies, and improving image, font, and page-loading behavior.
Why use it?
It helps prevent slow development updates, oversized browser bundles, layout shifts, and unnecessarily slow server responses. It also clarifies when code should run on the server or in the browser.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Building and optimizing Next.js applications, fetching data in server-rendered components, analyzing dependencies, and improving image, font, and page-loading behavior.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jxoesneon/ciel/nextjs-development
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.

Any agent
npx skills add jxoesneon/Ciel --skill nextjs-development
Clone the repo
git clone --depth 1 https://github.com/jxoesneon/Ciel

Made for: Claude Code, Codex.

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-development

README.md
[![agentmods](https://agentmods.dev/badge/skills/jxoesneon/ciel/nextjs-development.svg)](https://agentmods.dev/skills/jxoesneon/ciel/nextjs-development)
Your own site
<a href="https://agentmods.dev/skills/jxoesneon/ciel/nextjs-development"><img src="https://agentmods.dev/badge/skills/jxoesneon/ciel/nextjs-development.svg" alt="Measured on agentmods" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 540 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.00023 $0.00540
Opus 5 $0.00012 $0.00270
Sonnet 5 $0.00005 $0.00108
Haiku 4.5 $0.00002 $0.00054

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

Security

Grade A, and why

nextjs-development 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 4d 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.

skills/nextjs-development/SKILL.md · 50 lines

What it actually says

CIEL ADAPTATION: Next.js Development (The React Meta-Layer)

This skill formalizes the development of modern React applications using Next.js 16+. it prioritizes Turbopack for development and Server Components for production.

The Turbopack Workflow

  • Dev Mode: Default to next dev. Verify file-system caching is active in .next/.
  • HMR Integrity: If hot updates are slow, audit for massive barrel-imports or un-optimized third-party packages.
  • Bundle Analysis: Use the experimental bundleAnalyzer to find and tree-shake heavy dependencies.

Architecture Mandates

  1. Server Components (RSC): Default to Server Components. Use "use client" ONLY for interactivity (events, state, hooks).
  2. Data Fetching: Fetch data in Server Components via fetch() with appropriate revalidate tags.
  3. Optimized I/O: Use next/image for LCP images and next/font for zero-CLS typography.

Performance Gates

  • LCP: Target < 2.5s via server-side fetching and image priority.
  • CLS: Target < 0.1 via fixed-ratio image containers and font-optimization.
  • Cold Start: Audit middleware and global layouts for blocking I/O that slows down TTFB.

Anti-Patterns

  • Prop Drilling RLS: Passing security context deep into Client Components instead of checking in RSC.
  • Barrel Import Bloat: Importing 1 component from a 50-component index file (breaks tree-shaking).
  • Global State Overkill: Using Redux/Zustand for data that can be managed by RSC and URL params.
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. 4d ago First seen · 50 lines · 23 tokens per session scan A 5048445d262a

Subscribe to this mod's changes

nextjs-development is a skill published in the GitHub repository jxoesneon/Ciel (1 stars, last pushed today), licensed Apache-2.0. It adds 23 tokens to every session and 540 once invoked, about $0.0001 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-03.

Related

Other skills, from other repositories

frontend-patterns

Frontend development patterns for React, Next.js, state management, performance optimization, and UI best practices.

Kacper0199/Opencode-Ultrathinker · 24 tokens

vercel-react-view-transitions

Guide for implementing smooth, native-feeling animations using React's View Transition API ( component, addTransitionType, and CSS view transition pseudo-elements). Use this skill whenever the user wants to add page transitions, animate route changes, create shared element animations, animate enter/exit of components…

fcakyon/claude-codex-settings · 127 tokens

panel-app-react-vite-creator

Create or update an engineering-style NextClaw Panel component with pnpm, Vite, React, TypeScript, and Tailwind CSS, then build it into a static .panel directory inside a schema v2 package or an explicitly loose workspace Panel. Use for modern, reusable, complex, Agent-powered, typed Panel interfaces.

Peiiii/nextclaw · 73 tokens

Nerve Development

Nerve backend (Python) and frontend (React/TS) development and code contribution. Use when writing Python code for Nerve, fixing bugs, adding features, reviewing Nerve PRs, building the frontend, running tests, or working with the Nerve codebase. Triggers on "nerve code", "nerve PR", "fix nerve", "nerve feature"…

ClickHouse/nerve · 96 tokens

lov-install-tanstack-query

Initialize or refactor a frontend project to use TanStack Query as the unified server-state layer. Use when the user asks to install TanStack Query, initialize query infrastructure, migrate ad hoc fetch/invoke/useEffect request state, standardize query keys, or make app network requests share one cache model. Also…

lovstudio/skills · 110 tokens

frontend-patterns

Frontend development patterns for React, Next.js, state management, performance optimization, and UI best practices.

agent-skills-hub/agent-skills-hub · 24 tokens