nextjs-performance — community nextjs-performance, trend-korea-app, community, ide skills, Claude Code, Cursor, Windsurf

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/5/2026

Agent Capability Analysis

The nextjs-performance skill by kim-yeo-appweb-lab is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance.

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

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
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

nextjs-performance

Install nextjs-performance, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

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

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is nextjs-performance?

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

How do I install nextjs-performance?

Run the command: npx killer-skills add kim-yeo-appweb-lab/trend-korea-app/nextjs-performance. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for nextjs-performance?

Key use cases include: Optimizing independent fetches with Promise.all(), Implementing Suspense boundaries for slow data rendering, Deferring awaits for improved branch-specific rendering.

Which IDEs are compatible with nextjs-performance?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for nextjs-performance?

Requires existing Next.js project setup. Familiarity with Next.js architecture and components.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add kim-yeo-appweb-lab/trend-korea-app/nextjs-performance. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use nextjs-performance immediately in the current project.

Related Skills

Looking for an alternative to nextjs-performance or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

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
AI

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
AI