KS
Killer-Skills

nextjs-performance — Categories.community

v1.0.0
GitHub

About this Skill

Perfect for Frontend Agents needing optimized Next.js performance enhancements. 대한민국 사건/이슈 타임라인 추적 서비스

kim-yeo-appweb-lab kim-yeo-appweb-lab
[0]
[0]
Updated: 3/4/2026

Quality Score

Top 5%
31
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
Cursor IDE Windsurf IDE VS Code IDE
> npx killer-skills add kim-yeo-appweb-lab/trend-korea-app/nextjs-performance

Agent Capability Analysis

The nextjs-performance MCP Server by kim-yeo-appweb-lab is an open-source Categories.community integration for Claude and other AI agents, enabling seamless task automation and capability expansion.

Ideal Agent Persona

Perfect for Frontend Agents needing optimized Next.js performance enhancements.

Core Value

Empowers agents to optimize Next.js applications using Promise.all() for concurrent fetches, Suspense boundaries for slow data, and deferred awaits for improved rendering performance, leveraging critical fixes and best practices outlined in nextjs-critical-fixes.md.

Capabilities Granted for nextjs-performance MCP Server

Optimizing independent fetches with Promise.all()
Implementing Suspense boundaries for slow data rendering
Deferring awaits for improved branch-specific rendering

! Prerequisites & Limits

  • Requires existing Next.js project setup
  • Familiarity with Next.js architecture and components
Project
SKILL.md
1.3 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8

# Tags

[No tags]
SKILL.md
Readonly

Next.js Performance

Before Writing Code

  1. Read docs/agent/architecture/nextjs-critical-fixes.md for full patterns
  2. Check existing components in apps/frontend/components/

Critical Rules

Waterfalls

  • Use Promise.all() for independent fetches
  • Wrap slow data in <Suspense> boundaries
  • Defer await into branches where needed
tsx
1// WRONG 2const resumes = await fetchResumes(); 3const jobs = await fetchJobs(); 4 5// RIGHT 6const [resumes, jobs] = await Promise.all([fetchResumes(), fetchJobs()]);

Bundle Size

  • NO barrel imports: import X from 'lucide-react' is WRONG
  • YES direct imports: import X from 'lucide-react/dist/esm/icons/x'
  • Use next/dynamic for heavy components (editors, charts, PDF)
  • Defer analytics with ssr: false
tsx
1import dynamic from 'next/dynamic'; 2const HeavyEditor = dynamic(() => import('./HeavyEditor'), { ssr: false });

Server Actions

  • ALWAYS check auth INSIDE the action, not just middleware
  • Verify resource ownership before mutations

Production Build

  • Run npm run build && npm run start, NOT npm run dev
  • Docker must use standalone output

Pre-PR Checklist

[ ] No sequential awaits for independent data
[ ] Icons imported directly (not barrel)
[ ] Heavy components use next/dynamic
[ ] Server Actions have auth inside
[ ] Suspense around slow fetches

Related Skills

Looking for an alternative to nextjs-performance or building a Categories.community AI Agent? Explore these related open-source MCP Servers.

View All

widget-generator

Logo of f
f

widget-generator is an open-source AI agent skill for creating widget plugins that are injected into prompt feeds on prompts.chat. It supports two rendering modes: standard prompt widgets using default PromptCard styling and custom render widgets built as full React components.

149.6k
0
Design

chat-sdk

Logo of lobehub
lobehub

chat-sdk is a unified TypeScript SDK for building chat bots across multiple platforms, providing a single interface for deploying bot logic.

73.0k
0
Communication

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
Communication

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
Communication