typescript-nextjs-enterprise-dev

typescript-nextjs-enterprise-dev is a skill for Claude Code from 854771076/oh-my-claude-roles. It costs 49 tokens per session (3,989 once invoked), scanned A, original, MIT.

A set of required development rules for building full-stack applications with TypeScript and Next.js, a framework for web apps. It standardizes tools, project structure, type checking, testing, and production practices.

In plain words
What is it for?
Use it when starting projects, adding features, or reviewing code. It covers forms, authentication, databases, logging, background jobs, user interfaces, and tests.
Why use it?
It removes guesswork about which libraries and patterns to use. It also helps prevent inconsistent code, unsafe data handling, and hard-to-maintain features.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it when starting projects, adding features, or reviewing code. It covers forms, authentication, databases, logging, background jobs, user interfaces, and tests.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/854771076/oh-my-claude-roles/typescript-nextjs-enterprise-dev
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 854771076/oh-my-claude-roles --skill typescript-nextjs-enterprise-dev
Clone the repo
git clone --depth 1 https://github.com/854771076/oh-my-claude-roles

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 typescript-nextjs-enterprise-dev

README.md
[![agentmods](https://agentmods.dev/badge/skills/854771076/oh-my-claude-roles/typescript-nextjs-enterprise-dev/github.svg)](https://agentmods.dev/skills/854771076/oh-my-claude-roles/typescript-nextjs-enterprise-dev)
Your own site
<a href="https://agentmods.dev/skills/854771076/oh-my-claude-roles/typescript-nextjs-enterprise-dev"><img src="https://agentmods.dev/badge/skills/854771076/oh-my-claude-roles/typescript-nextjs-enterprise-dev/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 typescript-nextjs-enterprise-dev

Your own site · 80×15
<a href="https://agentmods.dev/skills/854771076/oh-my-claude-roles/typescript-nextjs-enterprise-dev"><img src="https://agentmods.dev/badge/skills/854771076/oh-my-claude-roles/typescript-nextjs-enterprise-dev.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,989 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.00049 $0.03989
Opus 5 $0.00024 $0.01995
Sonnet 5 $0.00010 $0.00798
Haiku 4.5 $0.00005 $0.00399

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

Security

Grade A, and why

typescript-nextjs-enterprise-dev 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 12d 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.

packages/fullstack/TypeScript/v1.0.0/skills/typescript-nextjs-enterprise-dev/SKILL.md · 253 lines

How it starts

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

TypeScript + Next.js 企业级全栈开发规范

版本: v1.0.0
适用范围: TS企业级全栈项目
核心原则: 能异步都异步、有框架用框架不手写重复代码、强类型安全、可测试、可维护、高性能

本规范基于2026年最新生态与生产级最佳实践,严格遵循「技术栈统一、类型安全优先、生产环境验证、开发体验优化」原则,所有规则均为强制执行,特殊场景需技术委员会审批后方可调整。


一、技术栈限制(唯一首选制)

1.1 核心框架

方向 唯一首选技术栈 禁止/不推荐替代方案 说明
全栈框架 Next.js 15+ (App Router) Pages Router、纯React、Remix 强制使用App Router,Pages Router仅用于历史遗留项目迁移
语言 TypeScript 5.5+ (严格模式) JavaScript、Flow 全项目TS覆盖,零JS文件
包管理 pnpm 9+ npm、yarn monorepo场景强制Turbo + pnpm
构建工具 Turbo (Turborepo) Nx、Lerna monorepo架构唯一首选,单项目可省略

1.2 业务开发库

方向 唯一首选技术栈 禁止/不推荐替代方案 说明
日志 Pino + nextjs-pino Winston、console.log 生产环境结构化日志唯一方案
类型校验 Zod Valibot、Yup、Joi 全链路类型安全基石,一套Schema覆盖TS+运行时
数据请求 TanStack Query (React Query) v5+ SWR、fetch封装 全栈数据请求与缓存管理标准
数据库ORM Prisma 5+ Drizzle、TypeORM 类型安全数据库操作首选
认证与权限 Auth.js (NextAuth.js) v5 Clerk、Lucia、自建认证 官方推荐,无供应商锁定
表单处理 React Hook Form + @hookform/resolvers (Zod) Formik、受控组件 性能最优,类型安全
客户端状态管理 Zustand Redux Toolkit、Jotai 极简API,零样板代码
UI组件/设计系统 shadcn/ui + Tailwind CSS v4 MUI、Ant Design、Chakra UI 100%可定制,服务端组件友好
队列与异步任务 BullMQ + Upstash Redis Bee-Queue、自建队列 生产级队列唯一方案
定时任务 Vercel Cron Jobs (轻量) / BullMQ重复任务 (生产级) node-cron、agenda Vercel环境优先官方Cron Jobs
LLM/智能体 LangChain TS + LangGraph TS 自建LLM编排 类型安全的AI应用开发标准

Read the full file on GitHub · 253 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 253 lines · 49 tokens per session scan A ed16fcbf611d

Subscribe to this mod's changes

typescript-nextjs-enterprise-dev is a skill published in the GitHub repository 854771076/oh-my-claude-roles (22 stars, last pushed 5mo ago), licensed MIT. It adds 49 tokens to every session and 3,989 once invoked, about $0.0002 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-30.

Related

Other skills, from other repositories

fast-typescript-check

Keep www-sacred's TypeScript fast to type-check and fast to run. Use when touching the ASCII/canvas animation components (the only real per-frame code here), tightening type-check wall-clock, or auditing a change for runtime or compiler regressions. Scoped to this repo — a React 19 / Next.js 16 component library plus…

internet-development/www-sacred · 84 tokens

onejs-setup-and-overview

Use this skill whenever the user wants to build or set up user interface in a Unity project using OneJS, React, TypeScript, or JSX, e.g. 'add a main menu to my game', 'build a settings screen', 'make a HUD', 'set up OneJS', 'my OneJS panel is blank', 'the UI is not hot reloading'. Covers confirming OneJS is installed…

Singtaa/OneJS · 199 tokens

typescript-rules

React/TypeScript frontend development rules including type safety, component design, state management, and error handling. Use when implementing React components, TypeScript code, or frontend features.

shinpr/claude-code-workflows · 39 tokens

coding-standards

A set of general coding standards and practical patterns for TypeScript, JavaScript, React, and Node.js. It covers readable naming, simple designs, avoiding repetition, and delaying unnecessary features.

loulanyue/awesome-claude-notes · 41 tokens

electron-development

Electron development guidelines for building cross-platform desktop applications with JavaScript/TypeScript.

Mindrally/skills · 18 tokens

create-custom-widget

Build a Mendix pluggable widget from scratch with React and TypeScript and package it as an .mpk. Use when no marketplace or built-in widget covers what is needed and a custom React component has to be written.

mendixlabs/mxcli · 50 tokens