Nextjs Project Wizard banner
greeun greeun

Nextjs Project Wizard

Development community

Description

Claude Code skill: Next.js 15 project wizard with Clean Architecture, middleware system, and environment configs

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Next.js 16 Project Wizard

A Claude Code skill that starts a new Next.js 16 project from the **`greeun/nextjs-16-project-template`** GitHub Template Repository.

[한국어 README](./README.ko.md)

What it does

The skill does **not** scaffold files one by one. It pulls a boilerplate that is already integrated and CI-verified (build / typecheck / lint / test), then runs the template's own `init-from-template.sh` to substitute the per-project values (name, port block, database name) and to erase every trace of the template.

The skill itself carries no boilerplate. It owns the procedure — what to ask, in what order to run things, how to reserve ports, and what to verify. The stack and the substitution logic live in the template repo, so the boilerplate can evolve without touching this skill.

Install

Skills are managed with `axt` (Agent eXtension Tool). This repository *is* the extension vault — `~/.axt/vault/skills` points at it — so the skill is already available as a vault entry. **Do not create a global `~/.claude/skills/` link.**

Attach it to whichever project you want to run the wizard from:

axt project init                              # only if .axt-profile.json does not exist yet
axt project add skills nextjs-project-wizard  # record it in .axt-profile.json
axt project sync                              # reconcile the symlinks with the profile

Verify with `axt skill list | grep nextjs-project-wizard`, or `axt project status` to compare the profile against the links actually on disk.

Usage

Ask Claude Code in plain language:

새 프로젝트 생성해줘

**Trigger keywords** — `새 프로젝트`, `프로젝트 생성`, `프로젝트 세팅`, `create project`, `scaffold project`, `init project`, `boilerplate setup`.

What the template ships (fixed stack)

No stack picking — everything below is already wired up and verified in the template repo.

Area Contents
Stack Next.js 16 · React 19 · TypeScript 5 · Prisma 7 · PostgreSQL 16 · Node 22 · pnpm
Auth