Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计提醒

nextjs-project-starterNext.js project starter 搜索

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

490

周安装

20

GitHub Stars

公开资料未说明

下载量

158
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:nextjs-project-starter(Next.js project starter 搜索)
来源仓库:https://github.com/testacode/llm-toolkit
仓库路径:skills/nextjs-project-starter
安装命令:
npx skills add https://github.com/testacode/llm-toolkit --skill nextjs-project-starter
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/testacode/llm-toolkit --skill nextjs-project-starter

简介

用于生成 Next.js 项目的起步模板与最佳实践配置。

  • 包含预设依赖、代码风格规则与目录结构。
  • 适合团队协作时统一开发起点与规范。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 模板内容需根据实际需求裁剪,避免冗余依赖。
  • nextjs-project-starter 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Next.js Project Starter

Create new Next.js projects with a configurable stack, always using latest stable versions with documentation verification.

Core Principles

  1. Always ask before acting - Never assume, always confirm
  2. Latest versions - Search npm/docs for current stable versions
  3. Show breaking changes - Warn about major version changes
  4. Configurable - Let user choose what to include

Workflow

Phase 1: Project Basics

Ask user for:

  1. Project name (kebab-case)
  2. Project description (one line)
  3. Target domain (custom domain / none)

Phase 2: Node Version Setup

node --version

Present options: use current, use Next.js recommended LTS, or specify custom version.

Generate:

  • .nvmrc with selected version
  • package.json with "engines": {"node": ">=X.X.X"}

Phase 3: Feature Selection

Present configurable features:

Core Features (select all that apply):
- Mantine UI + Tabler Icons
- Supabase (auth + database)
- Zustand (state management)
- Zod (validation)
- SWR (data fetching)
- TanStack Query (alternative to SWR)
- Vercel Analytics + Speed Insights
- Testing setup (Vitest + Testing Library)

Phase 4: Version & Docs Verification

For EACH selected feature:

npm view @mantine/core version

Search for official documentation, migration guides, and known issues via WebSearch.

Present version info and ask for confirmation before installing. IMPORTANT: Do this for EACH dependency before installing. Never batch install without verification.

Phase 5: Integration Questions

After features are confirmed, ask about integrations:

  1. GitHub Repository (create private repo via gh repo create)
  2. Vercel Deployment (link via vercel link)
  3. Supabase Project (if selected)
  4. CLAUDE.md generation

Phase 6: Project Creation

npx create-next-app@latest {project-name} \
  --typescript \
  --eslint \
  --no-tailwind \
  --app \
  --src-dir \
  --import-alias "@/*"

Then install selected dependencies with verified versions.

Phase 7: Structure Generation

Create preferred folder structure. See references/folder-structure.md for the full tree.

Phase 8: Configuration Files

Generate based on selections:

  • Mantine: See references/mantine-setup.md for PostCSS config and provider setup
  • Supabase: See references/supabase-setup.md for client/server/middleware setup
  • Environment template: Generate .env.example with required vars for selected features

Phase 9: CLAUDE.md Generation

If user confirmed, generate CLAUDE.md with:

  • Stack overview with versions
  • Available commands
  • Project structure
  • Key patterns (Server Components, App Router, etc.)

Phase 10: Final Summary

Present summary with: project location, node version, installed packages with versions, integration links, and next steps.

Dependencies Reference

When searching for versions, use these as baseline:

PackagePurposeDocs URL
nextFrameworkhttps://nextjs.org/docs
@mantine/coreUI Componentshttps://mantine.dev
@mantine/hooksReact Hookshttps://mantine.dev/hooks
@tabler/icons-reactIconshttps://tabler.io/icons
@supabase/ssrSupabase SSRhttps://supabase.com/docs
zustandStatehttps://zustand-demo.pmnd.rs
zodValidationhttps://zod.dev
swrData Fetchinghttps://swr.vercel.app
@tanstack/react-queryData Fetchinghttps://tanstack.com/query
vitestTestinghttps://vitest.dev

Error Handling

If any step fails:

  1. npm install fails: Check Node version, try with --legacy-peer-deps
  2. gh repo create fails: Verify gh auth status
  3. vercel link fails: Run vercel login first
  4. Supabase setup fails: Guide user to manual setup at supabase.com

Always ask user how to proceed on errors, never assume.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

24.53%
按下载量换算39

windsurf

23.87%
按下载量换算38

trae

18.22%
按下载量换算29

OpenCode

13.13%
按下载量换算21

Codex

6.72%
按下载量换算11

Antigravity

3.33%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills