Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计通过

web-nextjsWEB Next.js 前端

Agent Skill

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

总安装

412

周安装

17

GitHub Stars

4

下载量

135
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alphaonedev/openclaw-graph --skill web-nextjs

简介

用于辅助前端页面、组件和样式逻辑的开发与维护,专注 Next.js 框架。

  • 适合生成或审查 React、Next.js、Tailwind CSS 等相关代码结构。
  • 通过 GitHub 仓库安装,支持 Codex、Claude、Cursor、Gemini CLI 等宿主。
  • 使用时需结合项目路由和构建配置,避免生成孤立片段;改动后应本地预览验证。
  • web-nextjs 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

web-nextjs

Purpose

This skill provides expertise in building and deploying web applications with Next.js 15, focusing on modern features like App Router, server actions, and optimized rendering strategies.

When to Use

Use this skill for projects requiring fast, SEO-friendly React apps with server-side logic; ideal for e-commerce sites needing SSR, blogs with SSG, or dynamic apps with ISR; avoid for simple static sites where plain React suffices.

Key Capabilities

  • App Router: Enables file-based routing in the /app directory for better organization; example: create a route with app/about/page.jsx.
  • Server Actions: Perform mutations on the server without API routes; define as async functions in forms, e.g., 'use server' directive in components.
  • ISR/SSG/SSR: Configure ISR via revalidatePath() in server actions; SSG with getStaticProps; SSR with getServerSideProps for dynamic data fetching.
  • Middleware: Write edge functions in middleware.js to handle authentication or redirects, e.g., checking user sessions before page loads.
  • Turbopack: Speeds up development with incremental bundling; enable via next.config.js with experimental: {turbopack: true}.
  • Vercel Deployment: Deploy apps with zero-config via Vercel CLI; supports automatic ISR invalidation through webhooks.

Usage Patterns

To build a Next.js app, start by creating a project: run npx create-next-app@latest my-app --typescript and navigate to the /app directory for routing. For server actions, import and use them in forms: e.g., in a component, add async function addItem() {'use server'; await db.insert(item);}. Implement SSR by exporting getServerSideProps from a page: export async function getServerSideProps() {const data = await fetchData(); return {props: {data}};}. For ISR, use revalidate in actions: e.g., revalidatePath('/posts') after updating content. Example 1: Build a blog with SSG—create app/posts/[id]/page.jsx with getStaticProps to fetch posts, then run next build for static output. Example 2: Add authentication middleware—create middleware.js with export function middleware(request) {if (!request.cookies.token) return NextResponse.redirect('/login');} and test with next dev.

Common Commands/API

  • Create project: npx create-next-app@latest my-app --app to use App Router; add --typescript for TypeScript support.
  • Development server: next dev --port 3001 to run on a specific port with hot reloading.
  • Build and deploy: next build for production build, then vercel --prod for deployment; use Vercel API endpoint like POST https://api.vercel.com/v13/now/deployments?teamId=$VERCEL_TEAM_ID with JSON body {"name": "my-app"}.
  • API routes: Define in app/api/route.js, e.g., export async function GET(request) {const data = await fetch('https://api.example.com'); return Response.json(data);}.
  • Config formats: Edit next.config.js for custom settings, e.g., module.exports = {images: {domains: ['example.com']}, experimental: {appDir: true}}; use.env.local for env vars like NEXT_PUBLIC_API_URL="https://api.example.com".
  • Turbopack commands: Enable in next.config.js and run next dev for faster iterations.

Integration Notes

Integrate databases like PostgreSQL via Prisma: install @prisma/client, run npx prisma migrate dev, and use in server actions with env var $DATABASE_URL for connection strings. For auth, use NextAuth.js: install next-auth, configure in [...nextauth].js, and set $NEXTAUTH_SECRET in.env; example: import NextAuth from 'next-auth'; export default NextAuth({providers: []}). Link with Vercel for CI/CD by adding vercel.json with {"routes": [{"src": "/api/(.*)", "dest": "/api/$1"}]}. If API keys are needed, store as env vars like $STRIKE_API_KEY and access via process.env.STRIKE_API_KEY in components.

Error Handling

Handle 404s by creating app/404.js with a custom page: export default function NotFound() {return 404 - Page Not Found;}. Use error boundaries in components: wrap with <ErrorBoundary fallback={Error occurred}>; in App Router, add error.js files per route. For build errors, check next.config.js for misconfigurations; common fix: ensure all imports are correct in server components. Debug SSR issues by running next build --debug and inspecting logs; for API errors, use try/catch in actions, e.g., try {await fetchData();} catch (error) {console.error(error.message); return NextResponse.json({error: 'Fetch failed'}, {status: 500});}.

Graph Relationships

  • Related to cluster: web-dev (e.g., shares resources with other web-dev skills like frontend-react).
  • Connected via tags: nextjs (links to advanced-react skills), react (integrates with state-management tools), fullstack (overlaps with backend-node skills), web (connects to deployment-vercel skills).

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.73%
按下载量换算48

Claude

28.14%
按下载量换算38

Cursor

19.85%
按下载量换算27

Gemini CLI

9.17%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills