Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计通过

frontend-development前端开发

Agent Skill

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

总安装

494

周安装

21

GitHub Stars

公开资料未说明

下载量

173
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/carvalab/k-skills --skill frontend-development

简介

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。

  • 适合生成或审查 React、Next.js、Vue、Tailwind、CSS 等代码,整理组件结构或定位布局问题。
  • 需结合项目现有设计系统、路由和构建方式使用,避免生成孤立片段。
  • 涉及页面改动时应配合本地预览和构建检查确认视觉效果。
  • frontend-development 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Frontend Development

Next.js App Router with TypeScript. Server-first architecture. Covers everything from adding a page to building complex interactive features — including vague tasks where you need to figure out the right approach from context.

Related Skills: - kavak-documentation — for Kavak-specific patterns, GitLab CI, Docker templates - vercel-react-best-practices — for performance (bundle size, waterfalls, caching, re-renders) - Check .claude/CLAUDE.md or .cursor/rules/* for project-specific conventions MCP: Use kavak-platform/platform_docs_search for Kavak internal docs and kavak-platform/search_resource for workload info.

Quick Start

TaskPattern
New pageServer Component by default
Data fetchingServer Component async fetch
MutationsServer Actions + Zod + revalidatePath
StylingMUI sx prop, inline if <100 lines
StateServer = fetch, Client = useState only when needed

Core Principles

  1. Server by Default — components are Server Components unless they need useState/useEffect/events
  2. Server Actions for Mutations — replace API routes for internal app logic
  3. Opt-in Caching — use 'use cache' directive for explicit caching
  4. Minimal Client JS — keep 'use client' components small and leaf-level
  5. Type Everything — strict TypeScript, Zod for runtime validation
Performance: For bundle optimization, waterfalls, memoization, see vercel-react-best-practices

Server vs Client Decision

Need useState/useEffect/onClick? → 'use client'
Need browser APIs (localStorage)? → 'use client'
Just rendering data? → Server Component (default)

Keep Client Components small. Most of the tree stays server-rendered.

Data Fetching Pattern

// app/users/page.tsx - Server Component (default)
export default async function UsersPage() {
    const users = await db.user.findMany();  // Runs on server
    return <UserList users={users} />;
}

No TanStack Query needed — Server Components handle data fetching natively. Only use TanStack Query for real-time polling or complex optimistic updates.

Server Actions Pattern

// app/actions.ts
'use server';

import { z } from 'zod';
import { revalidatePath } from 'next/cache';

const schema = z.object({ title: z.string().min(1) });

export async function createPost(formData: FormData) {
  const parsed = schema.safeParse({ title: formData.get('title') });
  if (!parsed.success) return { error: parsed.error.flatten() };

  await db.post.create({ data: parsed.data });
  revalidatePath('/posts');
  return { success: true };
}
  • Server Actions → internal mutations, form submissions
  • Route Handlers → public APIs, webhooks, large uploads, streaming

Design Quality

When building UI, avoid generic-looking interfaces. Every interface should feel intentional:

  • Typography — pick fonts that match the context. Avoid defaulting to Inter/Roboto/Arial for everything
  • Color — commit to a cohesive palette with CSS variables. Dominant colors with sharp accents beat timid, evenly-distributed palettes
  • Spacing — generous negative space or controlled density, not cramped defaults
  • Motion — meaningful animations for state transitions, not gratuitous effects. Use CSS transitions first, Motion library for complex sequences

Match complexity to the design vision. A dashboard needs clarity and information density. A marketing page needs bold visual impact. A form needs clean usability.

Critical Rules

// ❌ Large 'use client' at top of tree — marks entire subtree as client
// ❌ Expose secrets in client: process.env.SECRET_KEY
// ❌ Old MUI Grid syntax: <Grid xs={12} md={6}>

// ✅ Small leaf-level client components
// ✅ Validate Server Action inputs with Zod
// ✅ MUI Grid size prop: <Grid size={{ xs: 12, md: 6 }}>

File Conventions

app/
├── layout.tsx          # Root layout (Server)
├── page.tsx            # Home page
├── loading.tsx         # Loading UI (Suspense fallback)
├── error.tsx           # Error boundary ('use client')
├── not-found.tsx       # 404 page
├── users/
│   ├── page.tsx        # /users
│   ├── [id]/page.tsx   # /users/:id
│   └── actions.ts      # Server Actions
└── api/webhook/
    └── route.ts        # Route Handler (public API)

Common Workflows

New Feature

  1. Create app/{route}/page.tsx (Server Component)
  2. Add loading.tsx for Suspense boundary
  3. Create Server Actions in actions.ts
  4. Add Client Components only where needed

Styling Component

  1. MUI sx prop with SxProps<Theme>
  2. Inline styles if <100 lines, separate .styles.ts if >100
  3. Grid: size={{xs: 12, md: 6}}

Performance Issue

→ Run vercel-react-best-practices skill for optimization rules

References

ReferenceWhen to Use
references/nextjs.mdApp Router, RSC, Server Actions, caching
references/component-patterns.mdReact.FC, hooks order, dialogs, forms
references/styling.mdMUI sx prop, Grid, theming
references/typescript.mdTypes, generics, Zod validation
references/project-structure.mdfeatures/ vs components/, organization

Next.js DevTools MCP (Next.js 16+)

When working on a Next.js 16+ project, use these MCP tools for runtime diagnostics and documentation. They provide better information than reading files or guessing — always prefer them when available.

ToolWhen to Use
next-devtools/initCall FIRST at session start to establish documentation-first approach
next-devtools/nextjs_docsLook up ANY Next.js API, pattern, or feature. Read nextjs-docs://llms-index resource first to get the correct path, then query
next-devtools/nextjs_indexDiscover running dev servers and their available MCP tools. Call before any runtime inspection
next-devtools/nextjs_callExecute runtime tools on a running dev server — get errors, list routes, check build status, clear cache. Use nextjs_index first to discover available tools
next-devtools/browser_evalBrowser automation — navigate, click, fill forms, take screenshots, get console messages. For Next.js, prefer nextjs_index/nextjs_call over console log forwarding
next-devtools/enable_cache_componentsMigrate to Cache Components mode (Next.js 16+). Handles config, error detection, Suspense boundaries, 'use cache' directives
next-devtools/upgrade_nextjs_16Upgrade to Next.js 16 — runs official codemod first (needs clean git), then handles remaining issues

Workflow: Before implementing changes, call nextjs_index to understand current routes and state. Before looking up Next.js APIs, call nextjs_docs with the correct path from the docs index. Use nextjs_call for runtime diagnostics (errors, build status) instead of reading logs manually.

Technology Stack

LayerTechnology
FrameworkNext.js (App Router, latest)
Type SafetyTypeScript (strict) + Zod
Data FetchingServer Components (async)
MutationsServer Actions + revalidatePath
Client StateuseState (minimal)
StylingMUI (latest)
FormsServer Actions + useActionState

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

25.57%
按下载量换算44

trae

22.73%
按下载量换算39

Antigravity

17.78%
按下载量换算31

Codex

12.71%
按下载量换算22

windsurf

8.47%
按下载量换算15

Gemini CLI

3.59%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills