Token导航 LogoToken导航TokenDH.com
前端设计执行命令github未标认证来源可访问许可证需确认审计通过

constructive-boilerplate-nextjs-appconstructive boilerplate Next.js 应用

Agent Skill

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

总安装

408

周安装

17

GitHub Stars

公开资料未说明

下载量

136
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/constructive-io/constructive-skills --skill constructive-boilerplate-nextjs-app

简介

用于辅助 Next.js 前端应用的开发与维护,支持认证、组织管理和 GraphQL SDK。

  • 适合搭建 Constructive 前端样板项目,理解项目结构、路由和配置。
  • 通过 npx 安装并使用 GitHub 仓库中的技能模板进行开发。
  • 需确认项目现有设计系统和构建方式,避免生成孤立代码片段。
  • constructive-boilerplate-nextjs-app 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Set up and develop with the Constructive App frontend boilerplate — a Next.js application with authentication, organization management, invites, members, and a GraphQL SDK.

When to Apply

Use this skill when:

  • Setting up a new Constructive frontend application from the boilerplate
  • Working with the constructive-app template (auth, orgs, invites, members)
  • Needing to understand the project structure, routes, or configuration
  • Running or customizing the Constructive App boilerplate

Overview

The Constructive App boilerplate is a frontend-only Next.js application that connects to a Constructive backend. It provides production-ready authentication flows, organization management, invite handling, member management, and account settings — all powered by a generated GraphQL SDK.

Setup

1. Clone the Boilerplate

Use pgpm init with the -w flag to scaffold a workspace from the template. All required arguments must be provided to avoid interactive prompts:

pgpm init -w \
  --repo constructive-io/sandbox-templates \
  --template nextjs/constructive-app \
  --name <workspace-name> \
  --fullName "<Author Full Name>" \
  --email "<author@example.com>" \
  --repoName <workspace-name> \
  --username <github-username> \
  --license MIT \
  --moduleName <module-name>

Required arguments for non-interactive mode (avoid asking for user input):

ArgumentDescription
--nameWorkspace directory name
--fullNameAuthor's full name
--emailAuthor's email
--repoNameRepository name (typically same as workspace name)
--usernameGitHub username
--licenseLicense (MIT, APACHE-2.0, BSD-3-CLAUSE, etc.)
--moduleNameModule/package name inside the workspace

The boilerplate is created at <workspace-name>/packages/<module-name>/.

Interactive mode (for humans): Prompt will be asking for the arguments missing from the required arguments list: ``bash pgpm init -w --repo constructive-io/sandbox-templates --template nextjs/constructive-app ``

Adding to an Existing Workspace

If you already have a pnpm workspace (a directory with pnpm-workspace.yaml), use pgpm init without the -w flag to clone the boilerplate as a new module inside it. Run this from the workspace root:

pgpm init \
  --repo constructive-io/sandbox-templates \
  --template nextjs/constructive-app \
  --moduleName <module-name>

Required arguments for existing workspace:

ArgumentDescription
--moduleNameModule/package name for the new boilerplate

This creates the module at packages/<module-name>/ within your existing workspace. The workspace-level arguments (--name, --fullName, --email, etc.) are not needed since the workspace already exists.

Note: You must run this from the workspace root or a valid packages/ subdirectory. If you are not inside a pnpm workspace, pgpm will error with "Not inside a PNPM workspace." Use the -w flag (see above) to create a new workspace and module together.
Interactive mode (for humans):: ``bash pgpm init --repo constructive-io/sandbox-templates --template nextjs/constructive-app ``

2. Install Dependencies

cd <workspace-name>/packages/<module-name>
pnpm install

3. Configure Environment

Create or verify .env.local:

# GraphQL endpoint (must point to a running Constructive backend)
NEXT_PUBLIC_SCHEMA_BUILDER_GRAPHQL_ENDPOINT=http://api.localhost:3000/graphql

4. Generate GraphQL SDK

The SDK must be generated against a running backend:

pnpm codegen

This runs @constructive-io/graphql-codegen using graphql-codegen.config.ts and outputs the SDK to src/graphql/schema-builder-sdk/api.

5. Start Development

pnpm dev

Opens at http://localhost:3001.

Backend Requirements

This boilerplate requires a running Constructive backend. The easiest way is via Constructive Hub:

# Terminal 1: Start backend infrastructure
cd /path/to/constructive-hub
pnpm start

# Terminal 2: Start this frontend
cd /path/to/constructive-app
pnpm dev

Required backend services:

ServicePortPurpose
PostgreSQL5432Database with Constructive schema
GraphQL Server (Public)3000API endpoint for app operations
GraphQL Server (Private)3002Admin operations
Job Service8080Background job processing
Email Function8082Email sending via SMTP
Mailpit SMTP1025Email server (development)
Mailpit UI8025View sent emails

Project Structure

src/
├── app/                        # Next.js App Router pages
│   ├── layout.tsx              # Root layout with providers
│   ├── page.tsx                # Home / org listing page
│   ├── login/                  # Login page
│   ├── register/               # Registration page
│   ├── forgot-password/        # Password reset request
│   ├── reset-password/         # Password reset form
│   ├── check-email/            # Email check prompt
│   ├── verify-email/           # Email verification
│   ├── invite/                 # Accept invite flow
│   ├── invites/                # Pending invites list
│   ├── account/                # Account management
│   ├── settings/               # App settings
│   ├── users/                  # User management
│   └── orgs/
│       └── [orgId]/            # Org-scoped pages
│           ├── layout.tsx      # Org layout with sidebar
│           ├── activity/       # Org activity
│           ├── invites/        # Org invites management
│           ├── members/        # Org members management
│           └── settings/       # Org settings
├── components/
│   ├── ui/                     # shadcn/ui components (43 components)
│   ├── auth/                   # Auth forms (login, register, reset, etc.)
│   ├── organizations/          # Org CRUD components
│   ├── invites/                # Invite management components
│   ├── members/                # Member management components
│   ├── account/                # Account settings components
│   ├── app-shell/              # Sidebar, navigation, layout shell
│   ├── layouts/                # Page layout wrappers
│   ├── settings/               # Settings UI
│   ├── shared/                 # Shared/reusable components
│   └── skeletons/              # Loading skeleton components
├── config/
│   └── branding.ts             # App name, logos, legal links
├── graphql/
│   ├── execute.ts              # GraphQL execution layer
│   ├── index.ts                # GraphQL exports
│   ├── typed-document.ts       # Typed document utilities
│   └── schema-builder-sdk/     # Generated SDK (via codegen)
├── hooks/                      # Shared React hooks
├── lib/
│   ├── auth/                   # Auth utilities and context
│   ├── gql/                    # GraphQL hooks and query factories
│   ├── navigation/             # Route and navigation helpers
│   ├── permissions/            # Permission checking utilities
│   ├── constants/              # App constants
│   ├── logger/                 # Logging utilities
│   ├── runtime/                # Runtime helpers
│   ├── utils/                  # General utilities
│   └── validation/             # Zod schemas and validation
├── store/                      # Client state management
├── app-config.ts               # App-wide configuration
└── app-routes.ts               # Route definitions

Customization

Branding

Edit src/config/branding.ts to customize:

  • App name and tagline
  • Logo and wordmark paths (relative to /public)
  • Company name for legal footer
  • Legal links (disclaimer, privacy policy, etc.)
  • Home path for logo links

Adding UI Components

Components use the Constructive shadcn registry:

npx shadcn@latest add @constructive/<component>

Registry URL is configured in components.json. Components use Base UI primitives, Tailwind CSS 4, and cva for variants.

GraphQL SDK

The SDK is generated from the running backend schema. After backend schema changes:

pnpm codegen

Config in graphql-codegen.config.ts points to http://api.localhost:3000/graphql by default.

Features

  • Authentication — Login, register, logout, password reset, email verification
  • Organizations — Create and manage organizations
  • Invites — Send and accept organization invites
  • Members — Manage organization members and roles
  • Account Management — Profile, email verification, account deletion
  • App Shell — Sidebar navigation, theme switching, responsive layout
  • Permissions — Role-based access control for org features

Troubleshooting

  • GraphQL errors on startup: Ensure the Constructive backend is running and the endpoint in .env.local is correct
  • Empty SDK directory: Run pnpm codegen with the backend running to generate the SDK
  • Password reset emails not arriving: Requires the full backend stack (job service + email function). Check Mailpit UI at http://localhost:8025
  • Port conflicts: The frontend runs on port 3001 by default. The backend GraphQL server uses port 3000

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.92%
按下载量换算46

Claude

31.09%
按下载量换算42

Cursor

16.73%
按下载量换算23

Gemini CLI

8.64%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/constructive-io/constructive-skills --skill constructive-boilerplate-nextjs-app 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills