Agent skill
Next.js Tooling
Ecosystem optimization, deployment, and developer flow.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/tooling-hoangnguyen0403-agent-skills-standar-5
Metadata
Additional technical details for this skill
- labels
-
nextjs turbopack deployment ci vercel
- triggers
-
{ "files": [ "next.config.js", "package.json", "Dockerfile" ], "keywords": [ "turbopack", "output", "standalone", "lint", "telemetry" ] }
SKILL.md
Next.js Tooling
Priority: P2 (MEDIUM)
Structure
project/
├── .next/ # Build artifacts
├── next.config.js # Advanced config
└── .eslintrc.json # Next plugins
Implementation Guidelines
- Turbopack: Enable
--turbofor development speed improvements. - Standalone Build: Use
output: 'standalone'for Docker optimization. - CI Linting: Run
next lintandtscon every pull request. - Telemetry: Opt-out of global tracking for privacy (
next telemetry disable). - Caching: Configure CI to cache
.next/cachefor faster builds. - Deployment: Prefer Vercel for automation or Docker for self-hosting.
Anti-Patterns
- Legacy Dev: No npm run start for dev: Use
next dev. - Large Bundles: No missing source-maps: Analyze via
@next/bundle-analyzer. - Missing Plugins: No custom lint rules: Use
eslint-plugin-next. - Production Logs: No console.log in prod: Use structured loggers.
References
- CI/CD & Deployment Guide
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?