Back to Skills

Create Next.js Project

Bootstraps a Next.js app with TypeScript, Tailwind, Biome, App Router, shadcn/ui, and Convex.

2026-03-25

The create-nextjs-project skill is for project setup. It creates a modern Next.js application with the baseline tooling already wired in, including TypeScript, Tailwind, App Router, Biome, import aliases, shadcn/ui, and Convex.

In practice, use it when you want to start a new app without spending time on repetitive setup steps. It is most useful for greenfield work where you want a solid default stack from minute one.

Install

---
name: create-nextjs-project
description: Create a new Next.js app with TypeScript, Tailwind, Biome, App Router, `src/`, import aliasing, shadcn/ui setup, baseline UI components, and Convex installed. Use when the user asks to create or bootstrap a Next.js project and provides a project name, especially for prompts like `Create a nextjs project with the following name "[NAME]"`.
---

# Create Nextjs Project

## Overview

Create the app in a fixed sequence with one user input: the app name. Keep the workflow deterministic and normalize obvious command typos from the request so the setup succeeds.

## Workflow

1. Read the requested app name and use it as `{app-name}`.
2. Run the Next.js bootstrap command from the target parent directory:

```bash
npx create-next-app@latest {app-name} --ts --tailwind --biome --app --src-dir --import-alias "@/*" --use-bun
  1. Enter the new project directory:
cd {app-name}
  1. Initialize shadcn/ui:
pnpm dlx shadcn@latest init
  1. Install the requested baseline components:
pnpm dlx shadcn@latest add button badge chip checkbox dialog dropdown-menu field sonner
  1. Install Convex:
bun add convex

Reliability Rules

Expected Invocation

Trigger on prompts in this shape:

Create a nextjs project with the following name "[NAME]"

Output

Report: