nextjs-modular

nextjs-modular is an agent for Claude Code from smicolon/ai-kit. It costs 19 tokens per session (2,942 once invoked), scanned A, original, MIT.

A guide for structuring large Next.js applications into separate feature modules, with routes and API handlers kept thin.

In plain words
What is it for?
Use it to design folders for features such as authentication and users, and to organize their components, hooks, services, and API routes.
Why use it?
It prevents related code from becoming scattered across a growing project, making the application easier to extend and maintain.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: model in frontmatter.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is import { LoginForm } from '../../../features/auth/components/LoginForm'.

Good fit Use it to design folders for features such as authentication and users, and to organize their components, hooks, services, and API routes.

Compare 6 agents from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/smicolon/ai-kit
agentmods
npx agentmods add agents/smicolon/ai-kit/nextjs-modular

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 nextjs-modular

README.md
[![agentmods](https://agentmods.dev/badge/agents/smicolon/ai-kit/nextjs-modular.svg)](https://agentmods.dev/agents/smicolon/ai-kit/nextjs-modular)
Your own site
<a href="https://agentmods.dev/agents/smicolon/ai-kit/nextjs-modular"><img src="https://agentmods.dev/badge/agents/smicolon/ai-kit/nextjs-modular.svg" alt="Measured on agentmods" height="20"></a>
Per session 19 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,942 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.00019 $0.02942
Opus 5 $0.00010 $0.01471
Sonnet 5 $0.00004 $0.00588
Haiku 4.5 $0.00002 $0.00294

Measured 3d ago against content hash 8b11cfca09ea, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

nextjs-modular 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.

packs/nextjs/agents/nextjs-modular.md · 435 lines

How it starts

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

Next.js Modular Architecture

You are a senior Next.js architect specializing in modular architecture for large-scale applications.

Current Task

Design and implement scalable modular architecture for Next.js applications using feature modules.

Modular Architecture Structure

Directory Layout

src/
├── app/                          # Next.js App Router (routes only)
│   ├── (auth)/                  # Route group
│   │   ├── login/
│   │   │   └── page.tsx        # Imports from features/auth
│   │   └── register/
│   │       └── page.tsx
│   ├── (dashboard)/
│   │   ├── layout.tsx
│   │   ├── page.tsx
│   │   └── users/
│   │       └── page.tsx
│   └── api/                     # API routes (thin, delegate to services)
│       ├── auth/
│       └── users/
├── features/                    # Feature modules (main code)
│   ├── auth/
│   │   ├── components/         # Auth-specific components
│   │   │   ├── LoginForm.tsx
│   │   │   ├── RegisterForm.tsx
│   │   │   └── AuthGuard.tsx
│   │   ├── hooks/              # Auth-specific hooks
│   │   │   ├── useAuth.ts
│   │   │   └── useLogin.ts
│   │   ├── services/           # Business logic and API calls
│   │   │   ├── authService.ts
│   │   │   └── tokenService.ts
│   │   ├── types/              # Auth types
│   │   │   └── index.ts
│   │   ├── utils/              # Auth utilities
│   │   │   └── validators.ts
│   │   └── index.ts            # Barrel export
│   ├── users/
│   │   ├── components/
│   │   │   ├── UserList.tsx
│   │   │   ├── UserCard.tsx
│   │   │   └── UserProfile.tsx
│   │   ├── hooks/
│   │   │   ├── useUsers.ts
│   │   │   └── useUserMutations.ts
│   │   ├── services/
│   │   │   └── userService.ts
│   │   ├── types/
│   │   │   └── index.ts
│   │   └── index.ts
│   └── payments/
│       ├── components/
│       ├── hooks/
│       ├── services/
│       ├── types/
│       └── index.ts
├── shared/                      # Shared across features
│   ├── components/             # Shared components
│   │   ├── DataTable/
│   │   ├── Modal/
│   │   └── ErrorBoundary/
│   ├── hooks/                  # Shared hooks
│   │   ├── useDebounce.ts
│   │   └── useLocalStorage.ts
│   ├── lib/                    # Core utilities
│   │   ├── api/               # API client
│   │   ├── utils/
│   │   └── constants/
│   ├── types/                  # Shared types
│   │   └── common.ts
│   └── ui/                     # Design system
│       ├── Button/
│       ├── Input/
│       └── Card/
└── config/                      # Configuration
    ├── env.ts
    └── constants.ts

Read the full file on GitHub · 435 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 Changed · +1 lines 8b11cfca09ea
  2. 3d ago First seen · 434 lines · 19 tokens per session scan A 66f6adb7f072

Subscribe to this mod's changes

nextjs-modular is an agent published in the GitHub repository smicolon/ai-kit (6 stars, last pushed 3d ago), licensed MIT. It adds 19 tokens to every session and 2,942 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 agents, from other repositories

react18-auditor

Deep-scan specialist for React 16/17 class-component codebases targeting React 18.3.1. Finds unsafe lifecycle methods, legacy context, batching vulnerabilities, event delegation assumptions, string refs, and all 18.3.1 deprecation surface. Reads everything, touches nothing. Saves .github/react18-audit.md.

archubbuck/workspace-architect · 74 tokens

react18-batching-fixer

Automatic batching regression specialist. React 18 batches ALL setState calls including those in Promises, setTimeout, and native event handlers - React 16/17 did NOT. Class components with async state chains that assumed immediate intermediate re-renders will produce wrong state. This agent finds every vulnerable…

archubbuck/workspace-architect · 76 tokens

react18-class-surgeon

Class component migration specialist for React 16/17 → 18.3.1. Migrates all three unsafe lifecycle methods with correct semantic replacements (not just UNSAFE prefix). Migrates legacy context to createContext, string refs to React.createRef(), findDOMNode to direct refs, and ReactDOM.render to createRoot. Uses memory…

archubbuck/workspace-architect · 81 tokens

react18-commander

Master orchestrator for React 16/17 → 18.3.1 migration. Designed for class-component-heavy codebases. Coordinates audit, dependency upgrade, class component surgery, automatic batching fixes, and test verification. Uses memory to gate each phase and resume interrupted sessions. 18.3.1 is the target - it…

archubbuck/workspace-architect · 101 tokens

react18-test-guardian

Test suite fixer and verifier for React 16/17 → 18.3.1 migration. Handles RTL v14 async act() changes, automatic batching test regressions, StrictMode double-invoke count updates, and Enzyme → RTL rewrites if Enzyme is present. Loops until zero test failures. Invoked as subagent by react18-commander.

archubbuck/workspace-architect · 81 tokens

.NET Upgrade

Perform janitorial tasks on C#/.NET code including cleanup, modernization, and tech debt remediation.

archubbuck/workspace-architect · 23 tokens