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.
git clone --depth 1 https://github.com/smicolon/ai-kitnpx agentmods add agents/smicolon/ai-kit/nextjs-modularWrote 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.
[](https://agentmods.dev/agents/smicolon/ai-kit/nextjs-modular)<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>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.
| Model | Per session | Once 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 |
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.
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
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.
- 3d ago Changed · +1 lines 8b11cfca09ea
- 3d ago First seen · 434 lines · 19 tokens per session scan A 66f6adb7f072
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.
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.
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…
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…
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…
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.
.NET Upgrade
Perform janitorial tasks on C#/.NET code including cleanup, modernization, and tech debt remediation.